SSH Tunneling
2010-08-11 by xpheas
My DSL-modem only supports insecure telnet, but on my Debian Server runs OpenSSH.
So i can tunnel a Telnet session through an SSH connection:
-N no interactive ssh session
-f background
-L local port
Now i can connect to my modem:
So i can tunnel a Telnet session through an SSH connection:
BASH-Code:
| ssh user@host -NfL 9023:192.168.1.1:23 |
-N no interactive ssh session
-f background
-L local port
Now i can connect to my modem:
BASH-Code:
| telnet localhost 9023 |
« back