ssh sessions when port 22 is locked down?
October 18, 2008 4:05 PM Subscribe
I sometimes visit a network where port 22 is locked down. I'd like to be able to initiate ssh sessions from this site. Is there any tunneling or other magic I can invoke to reach this goal, or any other solution short of badgering the admins?
(I'm also not sure now to find out what other ports are open. I know 21,80, and 443 are, because I can do normal web and ftp stuff, but other than manually trying each port with telnet, I'm not sure how to check...)
posted by namespan to computers & internet (10 answers total) 2 users marked this as a favorite
Port 12345line tosshd_config). Then you can just connect to it withssh -p 12345 example.comorssh example.com:12345and SSH out from that machine to wherever you want to go.Depending on your precise needs there may be fancier ways to do things, but this is going to be the simplest.
posted by enn at 4:21 PM on October 18, 2008 [1 favorite]