这里是问题。 我正在使用我的文字把一个装置直接连接到电话网上(,从我的窗). <=(电话:1)=>to the Tool)。 基本上,我的文字在TL1上进行了一些指挥,掌握了产出,并按参数价值进行处理。
This device will be install on another network, which i can t reach anymore by telnet directly. Now, i have to start an ssh connection on the specific server and then, start the telnet session from there. (from my windows desktop <=(ssh)=> server <=(telnet)=> to the device)
I understand the basic of paramiko... i found that code on jessenoler website:
import paramiko
ssh.connect( 127.0.0.1 , username= jesse , password= lol )
stdin, stdout, stderr = ssh.exec_command("uptime")
type(stdin)
stdout.readlines()
# output:
# [ 13:35 up 11 days, 3:13, 4 users, load averages: 0.14 0.18 0.16
]
我可以说明我如何能够从服务器上启动一个电话网。 如果使用:
ssh.exec_command("telnet 10.10.10.10 10001")
我知道解决我问题最容易的方法是在服务器上安装on,但可以安装。 有些人面临着这样的问题? 感谢投入!