using telnet to connect to a ssh based server -
Is it possible to use tunnel to connect to SSH server via Telnet? I am using an API that can telnet only the host, but the host will only accept the SSP connection. If this is possible, then what will I have to do to set it?
net cat and ssh
$ nc -l -p 12345 - C "ssh someone@remotehost.com"
Make sure that you have RSA authentication setup, because you can not log in a password.
Comments
Post a Comment