View Single Post
Posts: 209 | Thanked: 8 times | Joined on Nov 2005 @ Fishers, Indiana
#3
Originally Posted by screener View Post
How can i use ssh tunneling on n800 ??
Very interested to do that to open lots of blocked sites that has tv streams and to use voip coz it's blocked olso for skype when it comes out
I believe you need "real" ssh as opposed to dropbear ssh to do this. That said, here's a example from the man page:

The following example tunnels an IRC session from client machine “127.0.0.1” (localhost) to
remote server “server.example.com”:

$ ssh -f -L 1234:localhost:6667 server.example.com sleep 10
$ irc -c ’#users’ -p 1234 pinky 127.0.0.1


I use it to tunnel web traffic to privoxy on a remote system like so:
ssh -f -L 8118:localhost:8118 my_remote_host
That way I just specify localhost, port 8118 for my proxy and it works great.

Larry