OESF Portables Forum
Everything Else => Sharp Zaurus => Model Specific Forums => Distros, Development, and Model Specific Forums => Archived Forums => 5x00 General discussions => Topic started by: hollow5555 on November 17, 2005, 02:48:01 pm
-
Is there a way to set up an SSH tunnel from my zaurus to a remote PC? I'm behind a firewall at work but I have a proxy server set up on my machine at home that I SSH Tunnel into from my work desktop. I'd like to be able to do the same thing with my Zaurus if possible.
-
I hope you get much better info than this, but I'll chip in.
Easiest way to do it would be to find out what ports the proxy lets through it
(Usually 80 and 443) and set sshd to listen on those ports.
You could also use Corkscrew to ssh through a proxy.
http://www.agroman.net/corkscrew/ (http://www.agroman.net/corkscrew/)
ssh -p 443 user@sshd.home.com
-
I hope you get much better info than this, but I'll chip in.
Easiest way to do it would be to find out what ports the proxy lets through it
(Usually 80 and 443) and set sshd to listen on those ports.
You could also use Corkscrew to ssh through a proxy.
http://www.agroman.net/corkscrew/ (http://www.agroman.net/corkscrew/)
ssh -p 443 user@sshd.home.com
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104082\"][{POST_SNAPBACK}][/a][/div]
Well that's part of it.. see from my desktop (a winxp machine) I use putty to SSH through 443 to the ssh server on my linux box at home. The linux box has squid running on port 3128, but it's not exposed to the outside world (linux box is behind a router which blocks most ports but forwards 443 to the linux box). In putty on winXP i can tell it to open a series of ports locally and tunnel them through the ssh connection to the proxy server on my linux box. So then when I use mozilla I set the proxy to Localhost:3128 and it gets routed to my linux box and dumped through squid... That's what I want to be able to do from the zaurus.
Does someone know how to configure that tunnel from my zaurus. I have openSSH and it runs well (i was amused at how pine looks on such a small screen... so cute and amusing!) so now I just wnat to be able to tunnel other apps through the ssh tunnel... like kinkatta (AIM client), Opera, etc...
-
I hope you get much better info than this, but I'll chip in.
Easiest way to do it would be to find out what ports the proxy lets through it
(Usually 80 and 443) and set sshd to listen on those ports.
You could also use Corkscrew to ssh through a proxy.
http://www.agroman.net/corkscrew/ (http://www.agroman.net/corkscrew/)
ssh -p 443 user@sshd.home.com
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104082\"][{POST_SNAPBACK}][/a][/div]
Corkscrew looked interesting, but i think that's doing the opposite of what I want. That sounds like it's tunnelling ssh through http... I want to tunnel HTTP through SSH.
-
I hope you get much better info than this, but I'll chip in.
Easiest way to do it would be to find out what ports the proxy lets through it
(Usually 80 and 443) and set sshd to listen on those ports.
You could also use Corkscrew to ssh through a proxy.
http://www.agroman.net/corkscrew/ (http://www.agroman.net/corkscrew/)
ssh -p 443 user@sshd.home.com
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104082\"][{POST_SNAPBACK}][/a][/div]
Well that's part of it.. see from my desktop (a winxp machine) I use putty to SSH through 443 to the ssh server on my linux box at home. The linux box has squid running on port 3128, but it's not exposed to the outside world (linux box is behind a router which blocks most ports but forwards 443 to the linux box). In putty on winXP i can tell it to open a series of ports locally and tunnel them through the ssh connection to the proxy server on my linux box. So then when I use mozilla I set the proxy to Localhost:3128 and it gets routed to my linux box and dumped through squid... That's what I want to be able to do from the zaurus.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104084\"][{POST_SNAPBACK}][/a][/div]
I think the following will work:
ssh -p 443 user@sshd.home.com -R3128:localhost:3128
-
or try
ssh -p 443 user@sshd.home.com -L 3128:localhost:3128