forked from kiskander/DNAC-101-Code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path05_network_devices.py
53 lines (43 loc) · 2.17 KB
/
05_network_devices.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import requests
from requests.auth import HTTPBasicAuth
from dnac_config import DNAC, DNAC_PORT, DNAC_USER, DNAC_PASSWORD
#20221004T0613PM
import warnings
def get_device_list():
"""
Building out function to retrieve list of devices. Using requests.get to make a call to the network device Endpoint
"""
token = get_auth_token() # Get Token
url = "https://sandboxdnac.cisco.com/api/v1/network-device"
hdr = {'x-auth-token': token, 'content-type' : 'application/json'}
resp = requests.get(url, headers=hdr, verify=False) # Make the Get Request
device_list = resp.json()
print_device_list(device_list)
def print_device_list(device_json):
print("{0:42}{1:17}{2:12}{3:18}{4:12}{5:16}{6:15}".
format("hostname", "mgmt IP", "serial","platformId", "SW Version", "role", "Uptime"))
for device in device_json['response']:
uptime = "N/A" if device['upTime'] is None else device['upTime']
if device['serialNumber'] is not None and "," in device['serialNumber']:
serialPlatformList = zip(device['serialNumber'].split(","), device['platformId'].split(","))
else:
serialPlatformList = [(device['serialNumber'], device['platformId'])]
for (serialNumber, platformId) in serialPlatformList:
print("{0:42}{1:17}{2:12}{3:18}{4:12}{5:16}{6:15}".
format(device['hostname'],
device['managementIpAddress'],
serialNumber,
platformId,
device['softwareVersion'],
device['role'], uptime))
def get_auth_token():
"""
Building out Auth request. Using requests.post to make a call to the Auth Endpoint
"""
url = 'https://sandboxdnac.cisco.com/dna/system/api/v1/auth/token' # Endpoint URL
resp = requests.post(url, auth=HTTPBasicAuth(DNAC_USER, DNAC_PASSWORD),verify=False) # Make the POST Request
token = resp.json()['Token'] # Retrieve the Token from the returned JSONhahhah
return token # Create a return statement to send the token back for later use
if __name__ == "__main__":
warnings.filterwarnings("ignore")
get_device_list()