Open GoogleCodeExporter opened 9 years ago
I don't think this would be a good feature here because udptunnel is supposed
to be a simple tunneling program, following a basic client-server model. FTP
has the passive mode because of the separate channel used for transferring data.
One option is using port forwarding on the NAT'ing device. If the NAT'ing
device doesn't support port forwarding or you don't have access to change it, a
project called "pwnat" (http://samy.pl/pwnat/), which also uses this udptunnel
project, will get around that.
Another option is to swap where the udpclient and udpserver are run from, and
make a reverse SSH tunnel between the two machines through the UDP tunnel.
Example:
HostA is rsync client machine, HostB is rsync server machine.
HostA# udptunnel -s 3333
HostB# udptunnel -c 2222 HostA 3333 127.0.0.1 22
HostB# ssh -p 2222 -R 873:127.0.0.1:873 user@127.0.0.1
HostA# rsync /path 127.0.0.1
However, this just gave me the idea of adding the feature for reverse tunnel,
like the ssh -R option, which I think would be useful.
Original comment by dmeek...@gmail.com
on 7 Nov 2010 at 12:42
Original issue reported on code.google.com by
enzinol@gmail.com
on 23 Sep 2010 at 5:48