Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
from pyats.topology import loader
testbed = loader.load('pyATS/testbed.yaml')
dev = testbed.devices['cat8000v']
dev.connect(via='ssh')
dev.api.unconfigure_trustpoint(tp_name = 'TP-NAME')
I get a Traceback with the final error... Could not find the AP...
One of the more fundamental things you do in DNA Center in every deployment is once the device is discovered and the network settings established in design, you provision the device. To do this in the GUI you check the box next to the device in inve...
All,
I'm trying to add a device to NSO, see below. NOTE: I have used this hostname and IP address before and rebuilt the device and device config in NSO from scratch. Do I have to delete the hostkey in NSO somehow? Also know, I can ssh from the ...
Is there a document detailing the flow control language for templates in NSO? Some of the commands I've gleaned from different places are <? if {variable="whatever"} ?> <?else?> <?end?>, <?foreach ... ?>, contains(), among others. Is there a single...
Experts,My customer is trying to redesign ISE on VM’s correctly so that it works in the most efficient manner on a shared storage infrastructure. The processor, memory and disk space requirements are clear, but they need help with optimizing the sha...
Thanks bigevilbeard for your response. It did guide me in the right direction and I did figure it out. testbed.yaml file had ios_xe as the os instead of iosxe... so only the common methods were added to the object. I fixed the typo and all the ios...
pyats is up to date. I'm not sure how to determine whether I have appropriate genie packages. I added a Cat8000v to my environment when I was using a Cat9000 before, so this could be my issue. I need Genie packages for the 8000v maybe?
This is what templating is for.
Create the template, for example, ip address {{ ip_address }} {{ mask }}Combined with the data, for example, data1 = { 'ip_address': '10.1.2.3', 'mask': '255.255.255.0' }You render your final configuration: ip addres...
Mike,
Thanks for pointing me in the right direction. I tried that API and it actually did NOT work for me at first. See, I don't have an SDA fabric built yet and it sent me back an error (I forget exactly what it said) that it could not find the ...