Description

Use Cisco Prime Infrastructure 3.5 - 3.8 REST APIs to get information about the Hostname/Mgmt IP Address/ SNMP Location/SerialNumber of all devices monitored by the PI. The script does the following:

  • Gets all the device type groups (Routers/4300/4200/Switches etc). Function getDeviceGroups is used for this purpose.
  • Any group that is considered as a parent directory is removed. Function RemoveGeneric is used for this purpose.
  • Function getDevices iterates through the groups and gathers the required information. If the group is empty, it moves on to the next group.

Functions are imported from the separate file PrimeDeviceFunctions.py where we keep our updated library of functions for PI data manipulation.
This collection of functions is common among two repositories.

The information is written into a csv file, in order to be used as input into another application. The csv created has a naming convention of:
DeviceList_current_date_time.csv.
The primary goal was to gather the information and feed it into netbox, now into nautobot.

Configuration

The user should define the following in a file named primeapidata.py, according to their environment.

  • USERNAME: define REST API username
  • PASSWORD: define REST API password
  • PI_ADDRESS: define IP Address of Prime Infrastructure Server
    You can either use those global variables in PrimeDeviceFunctions.py or created your own credentials file (primeapidata.py) and define them there.

If your opt for the first choice, comment out the commands:

#USERNAME = "username"  # define  REST API username
#PASSWORD = "password"  # define REST API passowrd
#PI_ADDRESS = "ip_address"  # define IP Address of Prime Infrastructure Server

and comment in the following:

from primeapidata import PI_ADDRESS, USERNAME, PASSWORD

Technologies & Frameworks Used

  • Prime Infratructure APIs are used.
  • NO Third-Party products or Services are used.
  • The script is written in Python 3.

Installation

  1. Clone the repo:

  2. cd into directory

    • cd DeviceInfo_from_PI
  3. Create the virtual environment in a sub dir in the same directory

    • python3 -m venv venv
  4. Start the virtual environment and install requirements.txt

    • source venv/bin/activate
    • pip install -r requirements.txt
  5. Execute the script as any other Python script form console.

    • python getFullDevices_from_PI.py

Known issues

No Issues found

published

Author(s)

This project was written and is maintained by the following individuals

Maintenance Update (by I.T.)

We have been developping more code for working with the Cisco Prime Infrastructure API. This resulted in improving the code but also adding features such as querring the Access Point Endpoint. We will keep maintaining the code until it becomes the basis for an SDK or Prime Infrastructure is removed from our infrastructure and no longer supported.
The requirements have also been updated.

View code on GitHub
  • Owner

  • Contributors

    +2Github contributors
  • Categories

  • Programming Languages

    Python
  • License

    MIT License

Code Exchange Community

Get help, share code, and collaborate with other developers in the Code Exchange community.View Community
Disclaimer:
Cisco provides Code Exchange for convenience and informational purposes only, with no support of any kind. This page contains information and links from third-party websites that are governed by their own separate terms. Reference to a project or contributor on this page does not imply any affiliation with or endorsement by Cisco.