-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path03_device_interface.py
66 lines (52 loc) · 2.56 KB
/
03_device_interface.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
53
54
55
56
57
58
59
60
61
62
63
64
65
import requests
from requests.auth import HTTPBasicAuth
from dnac_config import DNAC, DNAC_PORT, DNAC_USER, DNAC_PASSWORD
def get_device_list():
"""
Building out function to retrieve list of devices. Using requests.get to make a call to the network device Endpoint
"""
global token
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) # Make the Get Request
device_list = resp.json()
get_device_id(device_list)
def get_device_id(device_json):
for device in device_json['response']: # Loop through Device List and Retreive DeviceId
print("Fetching Interfaces for Device Id ----> {}".format(device['id']))
print('\n')
get_device_int(device['id'])
print('\n')
def get_device_int(device_id):
"""
Building out function to retrieve device interface. Using requests.get to make a call to the network device Endpoint
"""
url = "https://sandboxdnac.cisco.com/api/v1/interface"
hdr = {'x-auth-token': token, 'content-type' : 'application/json'}
querystring = {"macAddress": device_id} # Dynamically build the querey params to get device spefict Interface info
resp = requests.get(url, headers=hdr, params=querystring) # Make the Get Request
interface_info_json = resp.json()
print_interface_info(interface_info_json)
def print_interface_info(interface_info):
print("{0:42}{1:17}{2:12}{3:18}{4:17}{5:10}{6:15}".
format("portName", "vlanId", "portMode", "portType", "duplex", "status", "lastUpdated"))
for int in interface_info['response']:
print("{0:42}{1:10}{2:12}{3:18}{4:17}{5:10}{6:15}".
format(str(int['portName']),
str(int['vlanId']),
str(int['portMode']),
str(int['portType']),
str(int['duplex']),
str(int['status']),
str(int['lastUpdated'])))
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)) # 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__":
get_device_list()