我需要在必须通过SSH连接的远程计算机上解析命令的输出。
此远程计算机运行Ubuntu,我只能通过名为BOSCLI的“控制台包装程序”(抱歉,不知道确切的用语)来访问SSH,在其中只能运行一组特定命令。 在连接时,我会提示输入sudo密码,输入后我会出现在提示符下,而无需再次输入。
起初,由于明显的原因,我开始使用exec_command
无效。我现在切换到invoke_shell()
,然后使用send()
,但仅发送密码提示,而不发送以下命令。
当然,我在这里和其他网站上也读过很多其他问题,但没有成功...
def conectar(url,user,passw, puerto, sudoPass):
cliente = paramiko.SSHClient()
cliente.set_missing_host_key_policy(paramiko.AutoAddPolicy())
cliente.connect(url,port=puerto, username=user, password=passw)
if cliente.get_transport() is None: raise Exception(paramiko.SSHException)
time.sleep(2)
canal = cliente.invoke_shell()
stdin = canal.makefile('wb')
stdout = canal.makefile('rb')
stderr = canal.makefile_stderr('r')
while not canal.recv_ready():
time.sleep(2)
aux = canal.send(sudoPass+'\n') #sudo pass
out = canal.recv(1024)
print(aux)
time.sleep(1)
aux = canal.send('''dhcp pool status\n''')
print(aux)
out += canal.recv(9999)
#ssh_stdin, ssh_stdout, ssh_stderr = cliente.exec_command('dhcp pool status',get_pty=True)
#ssh_stdout.channel.recv_exit_status()
cliente.close()
print(stdout.read())
print(stderr.read())
print(out.decode('ascii'))
输出应为长文本,其中包含不同池上的所有DHCP统计信息,以供下一种方法解析,但是我收到的输出为空。
还有一个让我最困惑的事情是,实际上“ out”有内容(这是外壳上受欢迎的MOTD等),但是stdout
是空的。
print(aux) returns 9 first
print(aux) returns 17 afterwards.
print(stdout.read()) returns b''
print(stderr.read()) returns b''
out
的内容如下:
Welcome to Ubuntu 12.04.5 LTS (GNU/Linux 3.13.0-66-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Tue Jul 2 11:34:22 CEST 2019
System load: 0.42 Users logged in: 0
Usage of /: 32.9% of 26.51GB IP address for eth0:
Memory usage: 22% IP address for eth1:
Swap usage: 4% IP address for eth2:
Processes: 194 IP address for docker0:
Graph this data and manage this system at:
https://landscape.canonical.com/
Last login: Tue Jul
[sudo] password for bos:
(pho-xem1) (Nuevo) bcli 0 [] normal>
通过sudo通行证后是命令提示符。
答案 0 :(得分:1)
您可能在服务器(或实际上是boscli shell)期望它之前就过早发送了命令。
在发送命令之前,您应该等待提示。
或者作为快速而肮脏的骇客,只需等待一小段时间即可。
对于stdout
:stdout
只是Channel.recv
的包装。由于您已经在Channel.recv
中使用了输出,因此stdout
中将不再有任何可用。要么读stdout
要么使用Channel.recv
,但不能两者都读。