使用 PyEZ 在 Juniper 路由器中执行 vty 命令

Executing vty commands in Juniper routers using PyEZ

我有一个要求,Juniper 路由器 shell 中的 python 脚本 运行 需要在 FPC 的 vty 控制台中执行一些命令。我不能使用 vty ­c 因为它可能无法在所有平台上正常工作。但是,我可以使用 vty fpc0 然后执行命令并从那里退出。

有没有办法使用PyEZ执行vty命令?如果是,请提供语法。

使用 PyEZ StartShell 实用程序我们可以做类似的事情

from jnpr.junos.utils.start_shell import StartShell
from jnpr.junos import Device

dev = Device(host='xxxx', user='xxxx', password='xxxx')
dev.open()

with StartShell(dev) as ss:
    op = ss.run('vty fpc0', 'vty\)#')
    print op[1]
    op = ss.run('show version', 'vty\)#')
    print op[1]

dev.close()

甚至

dev = Device(host='xxxx', user='xxxx', password='xxxx')
dev.open()

with StartShell(dev) as ss:
    op = sh.run('cprod -A fpc0 -c "show version"')
    print op[1]

dev.close()

StartShell class 假设能够使用端口 22 与目标设备建立新的 SSH 连接。这可能并不总是一个好的假设。

使用 StartShell 的替代方法是使用与 request pfe execute 命令等效的 RPC。这是一个例子:

>>> resp = dev.rpc.request_pfe_execute(target='fpc0', command='show version')
>>> print resp.text

SENT: Ukern command: show version
GOT:
GOT:
GOT: Juniper Embedded Microkernel Version 15.1F4.15
GOT: Built by builder on 2015-12-23 18:11:49 UTC
GOT: Copyright (C) 1998-2015, Juniper Networks, Inc.
GOT: All rights reserved.
GOT:
GOT:
GOT: RMPC platform (1200Mhz QorIQ P2020 processor, 3584MB memory, 512KB flash)
GOT: Current time   : Sep  2 15:35:42.409859
GOT: Elapsed time   :      27+19:14:41
LOCAL: End of file