paramiko

Posted wutanghua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了paramiko相关的知识,希望对你有一定的参考价值。

import paramiko
ssh=paramiko.SSHClient()
know_host=paramiko.AutoAddPolicy()
ssh.set_missing_host_key_policy(know_host)
ssh.connect(
    hostname="10.10.21.82",
    port=22,
    username="root",
    password="123"
)
shell=ssh.invoke_shell()
shell.settimeout(1)
command=input(">>>")+"\n"
shell.sent(command)
while True:
    try:
        recv=shell.recv(51.2).decode()
        if recv:
            print(recv)
        else:
            continue
    except:
        command=input(">>>")+"\n"
        shell.sent(command)
ssh.close()

 

以上是关于paramiko的主要内容,如果未能解决你的问题,请参考以下文章

Paramiko_Linux

python linux交互模块(paramikofabric与pexpect)

用python管理Cisco路由器

Python之Paramiko前端之html学习

第十八章 Python批量管理主机(paramikofabric与pexpect)