Quick Network Automation post on Cisco NSO Compliance Reporting.

What is compliance reporting. Network Configuration compliance is very important for all business entities for various purposes like external or internal audits, maintaining standards within the org etc. However, it is not that easy to maintain the uniformly complaint configuration when you have thousands of devices scattered globally serving in different business domains. In compliance… Read More Quick Network Automation post on Cisco NSO Compliance Reporting.

Streaming Telemetry : Cisco IOS-XR and Pipeline

Streaming telemetry is the next big thing in network monitoring. Mostly all the vendor found it immensely powerful and quickly integrated it with the devices they had. Streaming telemetry is becoming popular because of following key differences it has in comparison to the SNMP based model. It relies of PUSH rather than PULL model. Which… Read More Streaming Telemetry : Cisco IOS-XR and Pipeline

Script : Enabling Cisco guest-shell and running python scripts on Cisco router

Do you know that Cisco IOS has evolved? Do you know that you can run applications on your Cisco router?? Do you know this doesn’t involve any additional license ?? Well………!! all this is true and  very exciting. You must try the new guesshell available on Cisco routers .It gives  immense power to you and… Read More Script : Enabling Cisco guest-shell and running python scripts on Cisco router

HackerRank 30 days of coding – Day 9 ( Recursion)

Task :Write a factorial function that takes a positive integer, N as a parameter and prints the result of N!(N factorial).     Sample Input 3 Sample Output 6 #!/bin/python import math import os import random import re import sys def factorial(n): if n<0: return-1 elif n<2: return1 else: return n*factorial(n-1) if __name__ == ‘__main__’:… Read More HackerRank 30 days of coding – Day 9 ( Recursion)