使用 Python Paramiko 在 SSH 服务器上的辅助 shell/命令中执行(子)命令
- 2025-03-26 09:10:00
- admin 原创
- 14
问题描述:
我在使用 ShoreTel 语音交换机时遇到问题,我尝试使用 Paramiko 进入该交换机并运行几个命令。我认为问题可能是 ShoreTel CLI 给出的提示与标准 Linux 不同$
。它看起来像这样:
server1$:stcli
Mitel>gotoshell
CLI> (This is where I need to enter 'hapi_debug=1')
Python 是否仍期待这一点$
,或者我遗漏了其他什么?
我以为这可能是时间问题,所以我把它们放在time.sleep(1)
命令之间。但似乎仍然不起作用。
import paramiko
import time
keyfile = "****"
User = "***"
ip = "****"
command1 = "stcli"
command2 = "gotoshell"
command4 = "hapi_debug=1"
ssh = paramiko.SSHClient()
print('paramikoing...')
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname = ip, username = User, key_filename = keyfile)
print('giving er a go...')
ssh.invoke_shell()
stdin, stdout, stderr = ssh.exec_command(command1)
time.sleep(1)
stdin, stdout, stderr = ssh.exec_command(command2)
time.sleep(1)
stdin, stdout, stderr = ssh.exec_command(command4)
time.sleep(1)
print(stdout.read())
ssh.close()
print("complete")
我期望成功执行此代码后hapi_debug
级别为 1。这意味着当我通过 SSH 进入该设备时,我会看到那些 HAPI 调试正在填充。当我这样做时,我看不到那些调试。
解决方案 1:
我假设gotoshell
和hapi_debug=1
不是顶级命令,而是 的子命令stcli
。换句话说,stcli
是一种 shell。
在这种情况下,您需要将要在子 shell 中执行的命令写入其stdin
:
stdin, stdout, stderr = ssh.exec_command('stcli')
stdin.write('gotoshell
')
stdin.write('hapi_debug=1
')
stdin.flush()
如果您stdout.read
随后调用,它将等待直到命令stcli
完成。它永远不会这样做。如果您想继续读取输出,您需要发送终止子 shell 的命令(通常是`exit
`)。
stdin.write('exit
')
stdin.flush()
print(stdout.read())
相关推荐
热门文章
项目管理软件有哪些?
热门标签
云禅道AD