My work block everything except port80. Howto ssh -> lino
Putty wont work and neither will the ssh java client in webmin, since they both use port 22 for ssh access. Any ideas?
I don't want to install anything on the work client computer since the IT department does not allow me to. But there is IE7 and Java preinstalled.
I tried to configure my linode sshd to listen to port 80, but the connections seems to immediately be cut off.
10 Replies
If the outbound SSH connection doesn't conform to HTTP, it'll probably be blocked, even if it does use port 80.
If you use/need your Linode for work, ask IT to open up port 22 access for you. If it's for private use, whadda you doing accessing it from work?
Having said all that, have a look at tunneling SSH over HTTP:
–deckert
One more comment: try making your SSH client listen on port 443 - many organizations only proxy port 80, while letting port 443 through for direct secure connections.
--deckert
And then use putting to connect to the server on port 443, but make sure you specific your http proxy and set the right details up for it.
Works a treat where i am
I tried "lspci -v" to see if there was more than one nic, but that didn't work either.
Does anyone know what I have to do to get my second ip up and running and sshd to listen at the second ip address on port 443, while at the same time let the first ip address continue to listen to webmin traffic, also on port 443?
The SSL tunnels feature also won't work, if you don't have a free port.
I configured /etc/network/interfaces according to the instructions at:
Port 22
ListenAddress 64.22.109.86:443
ListenAddress 64.22.109.195:22
I ran /etc/init.d/ssh restart and it started to work. Well, maybe I restarted the server once also. I don't remember.
you can tunnel any number of ports through port 443.
So for example, tunnelling 22 and 5900 lets me use
both SSH and VNC to my linode from work. Zebedee
compresses and encrypts packets, and encrypted
packets are expected on port 443 traffic, no problem.
The zebedee server listens on the linode, and I start/stop
a batch file on the Windoze side at the office to enable
the tunnel. Some of my fellow techno-dweebs at the
office emulate this process to access their home networks.
James