Chris Jenn
Chris Jenn
getting an exception when calling StartShell run() using PyEZ 2.6.4+. There is no data in the stdout buffer to read for several iterations of the loop... ``` #!/usr/bin/env python3 from...
PyEZ version 2.6.5 ``` #!/usr/bin/env python3 from jnpr.junos import Device from jnpr.junos.utils.start_shell import StartShell def try_run(): dev = Device("foobar", user="foo", passwd="bar",port=22) with StartShell(dev) as ss: result = ss.run("hostname", sleep=2) print(result)...
### Brief description # Issue 1: The BGPPACommunity() class limits the community that can be specified to those defined in well_known_communities. It's should be possible to add a community like...
// the following generates output that results in an exception ``` >>> d.cli_to_rpc_string("show platform app-controller app l2ald-agent complete") "rpc.app_controller_show(app='l2ald-agent', complete=True)" >>> d.rpc.app_controller_show(app='l2ald-agent', complete=True) /usr/lib64/python3.7/site-packages/jnpr/junos/device.py:858: RuntimeWarning: An unknown exception occurred -...
expectation is the traces will be shown, instead a pipe tag is returned. ``` >>> foo = d.rpc.get_trace(node='re1', application='rpdagent') >>> etree.tostring(foo) b'\n' ``` Model: ptx10008 Junos: 23.3R1-202308210311.0-EVO Yocto: 3.0.2 Linux...
Crash seen when connecting to a Juniper box running Junos: 21.4R2-S1.12-EVO ``` # Modules from pygnmi.client import gNMIclient, telemetryParser # Variables host = ('1.1.1.1', '50051') # Body subscribe = {...