I have a remote ssh server at remote.com. On my local host, I forward all the ssh traffic to it:
ssh -L 127.0.0.1:88:remote.com:22 Now, when I do the following, ssh just hangs:
ssh user@127.0.0.1 -p 88I thought traffic to 127.0.0.1:88 is forwarded to remote.com:22. Why does it hang?
5 Reset to default