远程控制python(远程控制电脑命令)

网友投稿 324 2022-08-26


远程控制python(远程控制电脑命令)

import telnetlibdef telnetDoSomething(IP,user,passwd,command): try: # 连接服务器 telnet = telnetlib.Telnet(IP) # 设置调试级别 telnet.set_debuglevel(2) # 读取输入用户名信息 rt = telnet.read_until("Login username:".encode("utf-8")) # 写入用户名 telnet.write((user + "\r\n")).encode("utf-8") # 读取输入密码信息 rt = telnet.read_until("Login password:".encode("utf-8")) # 写入 telnet.write((passwd + "\r\n")).encode("utf-8") # 读取验证IP信息 rt = telnet.read_until("Domain name:".encode("utf-8")) # 写入ip telnet.write((IP + "\r\n")).encode("utf-8") # 读取登陆成功信息 rt = telnet.read_until(">".encode("utf-8")) # 写入指令 telnet.write((command + "\r\n")).encode("utf-8") # 上面命令成功,会继续读 > # 失败,一般不会是> rt = telnet.read_until(">".encode("utf-8")) # 断开连接 telnet.close() return True except: return Falseif __name__ == "__main__": IP = "10.0.142.197" user = "xxx" passwd = "***" command = "tasklist" telnetDoSomething(IP,user,passwd,command)


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:解决:return _compile(pattern, flags).search(string) TypeError: expected string or buffer(解决的拼音)
下一篇:Linux中python2和python3的pip设置 及清华安装源(pip环境变量配置 python3.6)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~