当为Vyatta尝试非标准命令时,Paramiko“无效命令”

时间:2013-04-07 16:11:16

标签: python ssh paramiko

我刚尝试使用Paramiko将我的Python / Django应用程序与Vyatta服务器连接进行SSH连接。不幸的是,当我尝试运行show interfaces时,它会抛出“无效命令”。但是,如果尝试从该服务器手动SSH,它可以正常工作。我也尝试了'/vbash -c "show interfaces"' - 结果相同。

ssh = paramiko.SSHClient()
ssh.connect('10.0.0.1','vyatta','vyatta')
stdin, stdout, stderr = ssh.exec_command('show interfaces')
# or stdin, stdout, stderr = ssh.exec_command('vbash -c "show interfaces"')
print '-'.join(stdout)
print '-'.join(stderr)

2 个答案:

答案 0 :(得分:2)

如前所述,您可以使用 vyatta-cfg-cmd-wrapper 并设置任何配置节点:

<import stuff>

command = """
    /opt/vyatta/sbin/vyatta-cfg-cmd-wrapper begin
    /opt/vyatta/sbin/vyatta-cfg-cmd-wrapper set system host-name newhostname
    /opt/vyatta/sbin/vyatta-cfg-cmd-wrapper commit
    /opt/vyatta/sbin/vyatta-cfg-cmd-wrapper save
    """

sshobj = paramiko.SSHClient()
sshobj.set_missing_host_key_policy(paramiko.AutoAddPolicy())
sshobj.connect(IP,username=login,password=sshpass)
stdin,stdout,stderr=sshobj.exec_command(command)
print ''.join(stdout)
sshobj.close()

结果如下:

user@hostname$ python vyatta.py

Saving configuration to '/config/config.boot'...

答案 1 :(得分:0)

Vyatta命令由vbash中的模板完成。需要设置一组环境变量才能使模板正常工作。您必须使用源.profilerc的远程环境,或者使用未记录的脚本vyatta-cfg-command包装器来设置提交更改所需的更复杂状态。