DNA Center (DNAC) is an essential component of Cisco's intent-based networking. It serves as the central point for network management and …
python
Python – Basic API Access with Mist Wi-Fi
The Mist access points were designed with API first. The information you're able to retrieve from their API is quite impressive. It's enough …
Listing Meraki Network Devices Using the API (DevNet)
Starting with the basics of network automation involves learning how to construct code. The DevNet Associate will test against your ability …
Python – Parsing Cisco AireOS Configuration
I'm beginning to get the hang of Python and it's capabilities with network operations/monitoring. My good friend and co-host on the CTS …
Parsing XML with Python Minidom
A core skill for a DevNet associate is being knowledgeable of how to parse XML into a Python structure. Data can be retrieved from …
Parsing JSON with Python
JSON seems to be a popular data structure to use with APIs. I work with Meraki often and noticed the decision they went with. You can see …
Committing To Think Python
Think Python is a free book written by Allen B. Downey. It’s the second edition which covers Python 3. Think Python replaces his …
Python Day 4: Dictionaries
Dictionaries Indexes for dictionaries are called keys. Keys are associated with a value called a key-value pair. A dictionary is …
Python Day 3: List Methods
The previous day went over the basics of the Python List. On this day I go a little further into List Methods. List Methods allow you to …