Controllers

Community space to connect, share knowledge, and seek guidance on network controllers and related topics
cancel
Showing results for 
Search instead for 
Did you mean: 
cancel

Forum Posts

It is my understanding that the issue is that the CU surpases the ".maxResults" of 1000. Based on my research, exceeding this threshold will impact production by creating timeouts. Is that right?   In addition, to override this limit, we need to edit...

mchavesr by Cisco Employee
  • 3814 Views
  • 2 replies
  • 0 Helpful votes

hi,i'm trying to work out how to call a list of routers for a netconf python script samtest.py,very simply shown here:Here is my list of routers:router_info.pyrouter = {"host": "172.16.8.100",          "port": "830",          "username": "xx",       ...

menzies456 by Frequent Visitor
  • 2729 Views
  • 2 replies
  • 0 Helpful votes

New to pyATS & Genie and kinda new to Python, I feel like I'm missing something very basic here but I can't figure out how to handle exceptions with Genie. I'm dumping the mac table for specific vlans, but when I dump the table for a vlan with no mac...

AJ Cruz by Level 7
  • 3122 Views
  • 1 replies
  • 0 Helpful votes

Hi all, customer is requesting info from Prime (version 3.5) with API /webacs/api/v4/data/ClientDetailsAfter several good responses they get error with a record with Enum value Error reported in logs: "Caused by: com.cisco.xmp.web.query.PersistenceEx...

mabarone by Cisco Employee
  • 3072 Views
  • 2 replies
  • 0 Helpful votes

Hallo, im trying to create a playbook for SNMP Configurations and i need your help/suggestions. so i want to config this 4 commands for example in one run,playbook:  - ios_config:       lines:       - " snmp-server group {{ group_name }} {{ snmp_vers...

Saskiaaa by Visitor
  • 7530 Views
  • 3 replies
  • 5 Helpful votes

This could be the very wrong place to ask this question, please redirect me if that is true. As I learn Genie and pyATS, all the examples that I see use a few network devices.  Is Genie and pyATS only intended for test automation purposes in small en...

dasampson by Community Member
  • 2849 Views
  • 2 replies
  • 0 Helpful votes

I was able to get device hostname with the following netmiko code.>>> print(net_connect.find_prompt()) Cisco# >>> >>> print(net_connect.send_command('show running-config | include hostname')) hostname Cisco >>>Would it be possible to remove `#` and `...