It’s first version of python app where we have number of devices loopback0 ip address stored in device.txt file.Program will read the file ,fatch loopback0 address and ssh into the respective device. Program will push the command “sh ip int brief” in second step and display output on screen .We have taken example of 3 […]
Netmiko develop by kirk Byers is open source python library based on Paramiko which simplifies SSH management to network devices . Netmiko library makes task to automate . Its very tedious to find out the procedure to install Netmiko in Windows enviornment.Let’s make out task simple :- Steps: Install Anaconda ( https://www.anaconda.com/download/) From the Anaconda […]
This post is continuation of the Regular Expression for Network Engineer Part-1 , here we have a look for the different methods to find out the pattern in string. Findall() – returns list of all the matches the pattern in a string without overlapping EXAMPLE Match()-return a match object when pattern is found at the […]
A regular expression is set of pattern used to define certain amount of text. An powerful tool in any scripting language to match any pattern. Lets have a look , how regular expression can be used in Python to solves the problem. Module “re’ is imported in python to support regular expression . << import […]
What is difference between MTU and MSS ? Most frequent question asked on the internet by networking guys.Hope this post will answer all queries related to MTU and MSS. As per Wikipedia , the maximum transmission unit (MTU) is the size of the largest protocol data unit (PDU) that can be communicated in a single, network layer, transaction , that […]
Software Defined Network (SDN) is technology to allow network devices to be managed through software application, thus making configuration process automated and faster. Network devices have its own management plane, data plane and control plane. Traditional SDN decouples Control plane from all different devices and have all these control plane go live inside SDN controller […]
Welcome to part 2 of ACI series, if you want to go through part 1 of ACI series , here is link for reference https://crazyrouters.wordpress.com/2017/05/22/nexus-9k-aci-mode-part-1/ Let’s start with the discussion of new terms related to ACI which will be used further during ACI discussion. Above Pic tells about the different relation between Tenant and […]
As discussed in post ( https://crazyrouters.wordpress.com/2017/02/25/learning-python-kirk-byers-python-course/ ) , i will be sharing the my learning on weekly basis as course continues. This will not only motivate me but also help others who are in phase of learning python 3. This post will focus on Week 3 (Conditionals and For Loops) .This post will focus on […]