name):
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname=ip, port=22, username=user, password=password)
time.sleep(2)
print('Info from ' + name + ':\n')
chan = ssh.invoke_shell()
if a == 20:
for line in cli:
while not chan.send_ready():
time.sleep(0.1)
chan.send(line + '\n')
else:
while not chan.send_ready():
time.sleep(0.1)
chan.send(command_list[a] + '\n')
output = chan.recv(99999)
while not chan.recv_ready():
time.sleep(0.1)
print ('\n'.join(output.split('\n')[3:]) + '\n' + '*' * 80)
ssh.close()
Правильно?
Проверка на ready всегда должна выполняться перед действием. Неважно отправляешь ты данные или получаешь.
Обсуждают сегодня