The first and the foremost is setting up a lab device for practising network automation. No matter how much theory you read but at the end of the day, its the actual hands-on that will teach you network automation. Cisco Always ON Devnet Sandbox Lab is one the great ways we can leverage to get…
Month: July 2021
How to parse data using python
Assume you want to extract below details from the output of “show version” from multiple devices at once. This post is going to talk about how to parse data using python Using this method you can extract anything you want from any other output too. For instance, you can extract all BGP neighbour info from…
How to read files in bulk with python for Network Engineers
As a network engineer we need to deal with thousands of devices at once and this is the essence of network automation. The code snippet below will give you the entry point into how to read files in bulk with python for network engineers. Please note, this is not the only way of doing things…