Skip to content

Personal project in Python during my free time.

Notifications You must be signed in to change notification settings

jmm-repo/cisco-3w-interfaces

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Network Cable Analyzer

Context

As a network engineer who is learning Python programming, I often encounter situations where network cables are left connected to switches but are no longer in use. To address this issue, I have developed this script to identify network interfaces that have been inactive for an extended period, specifically 3 weeks or more. By generating a text file with the relevant information, the network team or helpdesk can easily locate and remove the unused cables.

The script utilizes the Netmiko library to establish SSH connections to network devices and retrieve interface information by using Cisco CLI commands. It analyzes the last input value (from the 'sh int' command) of each not connected interface and identifies those that have not received any input for at least 3 weeks. The results are then written to a text file for further action.

Installation

To run the script, please install the following dependencies unsing pip :

pip install netmiko
pip install pyyaml

Usage

YAML Configuration (csr.yaml)

Before running the script, make sure to replace the following placeholders :

  • 'insert_switch_name' : replace with the name of the switch
  • 'insert_ip' : replace with the IP address or FQDN

When running

  • When running, the script will ask you to enter a username with privileged EXEC mode access on switches
  • The script will also ask you to enter the username's password

About

Personal project in Python during my free time.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%