https://github.com/vi/udpenc
UDP relay with blowfish encryption
https://github.com/vi/udpenc
Last synced: about 1 year ago
JSON representation
UDP relay with blowfish encryption
- Host: GitHub
- URL: https://github.com/vi/udpenc
- Owner: vi
- Created: 2010-10-31T21:48:31.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-10-31T22:26:59.000Z (over 15 years ago)
- Last Synced: 2025-04-15T14:14:14.214Z (about 1 year ago)
- Language: C
- Homepage: http://code.google.com/p/udpenc/
- Size: 103 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Description¶
UDP relay with blowfish encryption.
UDP client <-> udpenc <-> public network <-> updenc <-> UDP server.
May also use stdin/stdout instead of UDP sockets.
Can be used to implement PPP over UDP in more secure way.
Tested with pppd on Linux on one end and slirp.exe on Windows on the other end. If it don't work, please send a bug report to email vi0oss at server gmail.com. (if it works, please send too).
Example¶
Host A:
socat exec:"udpenc key_file - - - l 0.0.0.0 8888 2" exec:"slirp -P"
Host B:
pppd noauth nodetach 10.0.2.15:10.0.2.44 pty 'udpenc key_file - - - c 208.77.188.166 8888' unit 1
route add default ppp1
If this don't work, please report.