SSH port forwarding

Associate
Joined
1 Aug 2003
Posts
1,053
I'm trying to arrange a port forward so that someone can access the SSH on the machine through port 80 (the only port for them that's not blocked)

so far I've deduced that I need to use -L but it keeps telling me I'm using a bad port specification, any help would be gratefully received
 
Associate
Joined
9 Jan 2004
Posts
440
So they can only use port 80?

Seems to me you need to just make the SSH server listen on port 80.

ssh -L creates a tunnel, so say, you can goto http://localhost:8080/, and that gets forwarded, via an SSH tunnel, to the host you set the tunnel up too (effectivly sending everything via the ssh server)
 
Back
Top Bottom