摘要: import paramiko def sshcmd(ip, port,username,password,command): ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) s 阅读全文
posted @ 2020-09-29 15:57 chengxuyonghu 阅读(308) 评论(0) 推荐(0) 编辑