python ssh實時交互 python udp可以遠(yuǎn)程執(zhí)行cmd命令嗎?
python udp可以遠(yuǎn)程執(zhí)行cmd命令嗎?你可以使用python的pexcpct包通過ssh調(diào)用遠(yuǎn)程服務(wù)器指令:import pxsshimport getpasstry:s = pxssh.px
python udp可以遠(yuǎn)程執(zhí)行cmd命令嗎?
你可以使用python的pexcpct包通過ssh調(diào)用遠(yuǎn)程服務(wù)器指令:
import pxssh
import getpass
try:
s = pxssh.pxssh()
hostname = raw_input("hostname: ")
username = raw_input("username: ")
password = getpass.getpass("password: ")
s.login (hostname, username, password)
s.sendline ("uptime") # run a command
s.prompt() # match the prompt
print s.before # print everything before the propt.
s.sendline ("ls -l")
s.prompt()
print s.before
s.sendline ("df")
s.prompt()
print s.before
s.logout()
except pxssh.ExceptionPxssh, e:
print "pxssh failed on login."
print str(e)
如何使用Python連接遠(yuǎn)程Windows服務(wù)器?
你可以在winodws 上架設(shè)ssh 服務(wù)器, 然后你就可以在本地通過ssh協(xié)議來連接服務(wù)器,然后選擇程序. python 的ssh 模塊可以使用paramiko