h3c设备使用paramiko模块连接(SSHException:Channel closed)

发布时间:2020-07-22 18:23:15 作者:chier11
来源:网络 阅读:1302

使用产品为:VSR1000,版本号为:Version 7.1.059, ESS 0323L03。

问题:

使用python语言的paramiko模块,通过ssh协议登录连接VSR设备时报错,提示: paramiko.ssh_excetion.SSHException:Channel closed。详细信息见截图。
h3c设备使用paramiko模块连接(SSHException:Channel  closed)

paramiko.ssh_exception.SSHException: Channel closed. ===== invoke_shell()

正确的解决方法如下:

h3c设备使用paramiko模块连接(SSHException:Channel  closed)

H3C设备登录记录
#!/user/bin/env python
import sys
import paramiko
import time

def Testsshcon(ip,port,username,password):
    try:
        sshcon=paramiko.SSHClient()
        sshcon.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        sshcon.connect(ip,port,username,password,compress=True)
        #print "ok"
        #print 'ipaddress %s,port %d,uername %s,password %s'%(ip,port,username,password)
        print "ssh secuees"
        cmds=['dis cpu\n','dis version\n']
        conn=sshcon.invoke_shell()
        for cmd in cmds:
            time.sleep(1)
            conn.send(cmd)
            time.sleep(1)
            print "command"
            out=conn.recv(1024)
            print out
        sshcon.close()
    except Exception,e:
        print "connet error",e

if __name__=="__main__":
    Testsshcon('10.10.10.10',22,'username','password')
推荐阅读:
  1. paramiko intertive.py文件简单修改记录用户输入命令 v1
  2. 使用paramiko控制交换机

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

paramiko channel closed python

上一篇:iTunesU无法上传,决定放弃

下一篇:开机自启加入任务栈

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》