ssh结果在paramiko的python中似乎只有16位

时间:2015-06-12 15:12:02

标签: python ssh paramiko

我在python 2.7中使用paramiko连接到cisco路由器,发送命令然后在for循环中解析命令的输出。 问题似乎是返回结果限制为65535个字符(16位)。我打印输出并将其粘贴在编辑器中,以计算它给我的字符和数字。我确定我这样做是非常错误的,因为我学习python,因为我去嘿嘿。这是代码:

            import sqlite3
            import paramiko
            import time
            import re

            def disable_paging(remote_conn):
                '''Disable paging on a Cisco router'''
                remote_conn.send("terminal length 0\n")
                time.sleep(1)
                output = remote_conn.recv(10000)
                return output

            if __name__ == '__main__':
                username = 'user'
                password = 'password'
                db = sqlite3.connect('cmts-priv.sqlite')
                cursor = db.cursor()
                cursor.execute('''SELECT ID, ip, hostname, uptime, active, cmtstype FROM cmts''')
                all_rows = cursor.fetchall()

                print "Producing report. This takes a few seconds so be patient and do not refresh\n"
                for row in all_rows:

                    if (row[4] == 1):


                        print "Docsis 1.x modems for : " + row[2]
                        print"\n"
                        remote_conn_pre = paramiko.SSHClient()
                        remote_conn_pre.set_missing_host_key_policy(
                             paramiko.AutoAddPolicy())
                        ip=row[1]
                        remote_conn_pre.connect(ip, username=username, password=password)
                        remote_conn = remote_conn_pre.invoke_shell()

                        disable_paging(remote_conn)
                        remote_conn.send("\n")
                        remote_conn.send("show cable modem docsis version | inc 1\.[10] 1\.[10]\n")
                        time.sleep(5)

                        output = remote_conn.recv(100000000)
                        output = output.split("\n")
                        remote_conn_pre.close()

                        #print output
                        for i in output:
                            if "0013.11" not in i and "0015.96" not in i and "0015.a2" not in i and "0015.a3" not in i and "0015.a4" not in i and "0015.ce" not in i and "0015.cf" not in i and "0015.d0" not in i:
                                X = '([0-9a-fA-F]{4}\.[0-9a-fA-F]{4}\.[0-9a-fA-F]{4})'
                                c = re.compile(X).finditer(i)
                                if c:
                                    for y in c:
                                        print i[y.start(): y.end()]
                        print "\n=============================\n"

这将给输出变量的结果如下:
00a0.7373.2a14 C4 / 0 / U1在线11 1.0 1.0 tdma NB
00a0.7372.ed18 C4 / 0 / U1在线12 1.0 1.0 tdma NB
00a0.7373.2af2 C4 / 0 / U0在线20 1.1 1.1 tdma NB
.....
每个路由器约3500个结果
然后我在我过滤掉我不想要的那些之后提取mac并将它们输出到列表中。问题是我从路由器回来的结果似乎停在16位,当我真的会得到更多。如果我直接在路由器cli中产生输出,它会在大约1/6处停止。我试着玩超时,睡眠和recv缓冲区。我只是想不出这个:( 和sqlite数据库存储一些东西,我用它来做几个脚本。我用row [1]获取的是路由器的ip,以将其提供给连接字符串。 我相信你会说很多人会让我的生活变得复杂,但就像我说我正在通过谷歌搜索hehe然后尝试理解它来学习所有这一切。这肯定会发展,但是现在我真的陷入了一个腌菜,这个部分和不完整的结果从我的路由器中获取。帮助:(

1 个答案:

答案 0 :(得分:0)

您需要在recv周围设置一个循环,例如:

buff = ''
while not buff.endswith(':~# '):
    resp = chan.recv(9999)
    buff += resp
    print(resp)

请参阅此示例:https://gist.github.com/rtomaszewski/3397251