1# dunnel 2 3A less bloated version of `stunnel(1)` for [DTLS][RFC6347]. 4 5# Status 6 7Unmaintained and **totally unfinished**. For instance, only 1-to-1 8relationships are supported currently. Consider this an **experiment** 9which still needs a lot of work and care.1011# Usage example1213Generate key/identity files:1415 $ printf Client_identity > identity16 $ printf secretPSK > key1718Client usage example:1920 $ cd tinydtls/tests21 $ ./dtls-server -A ::1 -p 2323 &22 $ ./dunnel -a ::1 -p 4242 -i identity -k key ::1 2323 &23 $ busybox nc -u ::1 42422425Server usage example:2627 $ busybox nc -u -l -p 4242 ::1 &28 $ ./dunnel -s -a ::1 -p 4242 -i identity -k key ::1 2342 &29 $ cd tinydtls/tests30 $ ./dtls-client -i ../../identity -k ../../key ::1 2342313233# License3435This program is free software: you can redistribute it and/or modify it36under the terms of the GNU General Public License as published by the37Free Software Foundation, either version 3 of the License, or (at your38option) any later version.3940This program is distributed in the hope that it will be useful, but41WITHOUT ANY WARRANTY; without even the implied warranty of42MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General43Public License for more details.4445You should have received a copy of the GNU General Public License along46with this program. If not, see <http://www.gnu.org/licenses/>.4748[RFC6347]: https://tools.ietf.org/html/rfc6347