Be notified of new comments on this post with the RSS feed for this post.
You can use ssh tun features over icmp tunneling, for having unlimited access to the intertubes!
Look up the -w option in ssh(1) and PermitTunnel in sshd_config(5). You of course have to take one minute to set up routes etc, but the result is that you say goodbye to proxies, socks and all that cheesy setup.
Have fun. Steal much.
I use the combination ssh as socks server and the tsocks-wrapper for all tunnel-tcp-connections.
where i can find "proxy.example.com" and "portal.example.com" i don't understand in point 1 making ptunnel
you still need at least one remote computer that have an internet connection right? well i don't have that... so i can't use this ping tunnel... thx btw
You can use a restricted version of markdown formatting here. You can use the toolbar above the text field to make this more painless. For more information about markdown please refer to the markdown cheatsheet.
You can use the SSH connection as a SOCKS proxy:
$ ssh -D 8080 localhost -p 8765Or setup a SOCKS proxy on your 'proxy' host and tunnel directly to it with:
**My setup:***
Router at home (Linksys router with OpenWRT firmware)
# ipkg install ptunnel# ptunnel -x mypassword -f ptunnel.log &On client system (Debian)
$ sudo aptitude install ptunnel$ sudo ptunnel -x mypassword -p proxy.mydomain -lp 8765 -da localhost -dp 22$ ssh -D 8080 localhost -p 8765