paramiko.exec_command() not executing and returns quot;Extra params found in CLIquot;(paramiko.exec_command() 未执行并返回“在 CLI 中找到的额外参数)
问题描述
我正在尝试使用 Paramiko 对服务器进行 ssh 并执行命令.但是 paramiko.exec_command() 返回错误.为什么会这样?
I am trying to ssh a server using Paramiko and execute a command. But the paramiko.exec_command() returns with an error.Why is this happening?
这是我的 Python 脚本:
This is my Python script:
import paramiko
ssh = paramiko.SSHClient()
ssh.load_system_host_keys()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('10.126.141.132', username='usrm', password='passwd')
stdin, stdout, stderr = ssh.exec_command("show chassis")
print(stdout.readlines())
ssh.close()
执行时它会返回以下消息:
When executed it returns with this message:
['在 CLI 中发现额外参数,不支持,退出 CLI 会话: ']
['Extra params found in CLI, this is not supported, exiting the CLI session: ']
我在 Windows 上使用 Python 3.5.2 :: Anaconda 4.1.1(64 位)和 Paramiko.
I am using Python 3.5.2 :: Anaconda 4.1.1 (64-bit) with Paramiko on Windows.
我已经手动尝试了这些命令并且它正在工作.
I have tried the commands manually and it is working.
推荐答案
根据您的最新评论:
我安装了 Cygwin 终端并使用命令对服务器进行 SSH...它出现了 Extra params
错误.我执行的命令:ssh usrm@10.126.141.132 "show chassis"
,输出:No entry for terminal type "dumb";使用哑终端设置.在 CLI 中发现额外参数,不支持,退出 CLI 会话:
I installed a Cygwin Terminal and SSH'd the server with the command...it came up with the
Extra params
error. Command I executed:ssh usrm@10.126.141.132 "show chassis"
, Output:No entry for terminal type "dumb"; using dumb terminal settings. Extra params found in CLI, this is not supported, exiting the CLI session:
好像usrm
账号在SSH服务器上的login shell不允许以非交互方式运行命令.要解决问题,您必须像这样使用 invoke_shell()
:
it sounds like the usrm
account's login shell on the SSH server is not allowed to run commands in the non-interactive way. To solve the problem you have to use invoke_shell()
like this:
chan = ssh.invoke_shell()
chan.sendall('show chassis
')
s = chan.recv(4096)
print s
这篇关于paramiko.exec_command() 未执行并返回“在 CLI 中找到的额外参数"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:paramiko.exec_command() 未执行并返回“在 CLI 中找到的额外参数"
基础教程推荐
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01