gpt4 book ai didi

python - 使用 Juniper 执行的 Paramiko 回显命令

转载 作者:行者123 更新时间:2023-12-02 14:27:27 26 4
gpt4 key购买 nike

使用 Paramiko 从 Juniper 获取 o/p 时,输出首先显示命令,然后执行命令。下面是代码和输出

import paramiko
import getpass
password = getpass.getpass()
with open('ips.txt','r') as f:
ip = f.read().splitlines()
for device in ip:
ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh_client.connect(device, port=22, username='test', password=password, look_for_keys=False, allow_agent=False)
remote_connection = ssh_client.invoke_shell()
remote_connection.send('set cli screen-length 500\n')
remote_connection.send('ping 4.2.2.2 rapid\n')
import time
time.sleep(3)
output = remote_connection.recv(4096)
print(output.decode())
with open('Backup.txt', 'a+') as f:
f.write(output)
f.write("\n********************\n")
ssh_client.close()

输出如下:

Password: 
--- JUNOS XXX built XXX
set cli screen-length 500 <---- Is it something relevant with Juniper when running python with paramiko.
ping 4.2.2.2 rapid <-----
{master:0}
XXX> set cli screen-length 500
Screen length set to 500

{master:0}
XXX> ping 4.2.2.2 rapid
PING 4.2.2.2 (4.2.2.2): 56 data bytes
!!!!!
--- 4.2.2.2 ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max/stddev = 43.876/52.403/55.517/4.345 ms

最佳答案

您正在通过模拟在交互式 shell 终端界面上键入命令来执行命令。因此,终端与您“键入”的内容相呼应也就不足为奇了。

要自动执行命令,请不要使用 shell 终端。使用 SSH“执行” channel 。在 Paramiko 中是 SSHClient.exec_command .

Python Paramiko - Run command

关于python - 使用 Juniper 执行的 Paramiko 回显命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61422355/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com