-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathise-get-ers.py
executable file
Β·205 lines (166 loc) Β· 5.88 KB
/
ise-get-ers.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#!/usr/bin/env python3
"""
Get details about a specific ISE ERS resource. See https://cs.co/ise-api for REST API resource names.
Requires setting the these environment variables using the `export` command:
export ISE_PPAN='1.2.3.4' # hostname or IP address of ISE Primary PAN
export ISE_REST_USERNAME='admin' # ISE ERS admin or operator username
export ISE_REST_PASSWORD='C1sco12345' # ISE ERS admin or operator password
export ISE_CERT_VERIFY=false # validate the ISE certificate
You may add these export lines to a text file and load with `source`:
source ise.sh
"""
__author__ = "Thomas Howard"
__email__ = "[email protected]"
__license__ = "MIT - https://mit-license.org/"
import argparse
import requests
import json
import os
import sys
DEBUG = 0
ISE_PAGING_MAX=100
HEADERS_JSON = { 'Accept': 'application/json' }
RESOURCE_NAMES = [ # List of supported ISE resources
# Deployment
'deploymentinfo/getAllInfo', # 'deploymentinfo'=> deploymentinfo/getAllInfo
'node',
# 'service', # π empty resource; link:service/null gives 404
'sessionservicenode',
# Network Devices
'networkdevice',
'networkdevicegroup',
# Endpoints
'endpoint',
# 'endpointcert', # POST(create) only!!!
'endpointgroup',
'profilerprofile',
# RADIUS Authentications
'activedirectory',
'allowedprotocols',
'adminuser',
'identitygroup',
'internaluser',
'externalradiusserver',
'radiusserversequence',
'idstoresequence',
'restidstore', # RESTIDStore must be enabled / 404 if not configured
# RADIUS Authorizations / Policy
'authorizationprofile',
'downloadableacl',
'filterpolicy', # 404 if none configured
# Portals
'portal',
'portalglobalsetting',
'portaltheme',
'hotspotportal',
'selfregportal',
# Guest
'guestlocation',
'guestsmtpnotificationsettings',
'guestssid',
'guesttype',
'guestuser', # π requires sponsor account!!!
'smsprovider',
'sponsorportal',
'sponsoredguestportal',
'sponsorgroup',
'sponsorgroupmember',
# BYOD
'certificateprofile',
'certificatetemplate',
'byodportal',
'mydeviceportal',
'nspprofile',
# SDA
'sgt',
'sgacl',
'sgmapping',
'sgmappinggroup',
'sgtvnvlan',
'egressmatrixcell',
'sxpconnections',
'sxplocalbindings',
'sxpvpns',
# TACACS
'tacacscommandsets',
'tacacsexternalservers', # 404 if none configured
'tacacsprofile',
'tacacsserversequence', # 404 if none configured
# pxGrid / ANC / RTC / TC-NAC
# 'pxgridnode', # π π 404 always whether pxGrid is enabled or not
'ancendpoint',
'ancpolicy',
# ACI
'acibindings/getall',
'acisettings',
# Operations
'op/systemconfig/iseversion',
]
def to_bool (o):
"""
Returns a boolean value based on the object type and value.
"""
if type(o) == 'int':
if o > 0: return True
elif type(o) == 'str':
s = o.lower()
# true | yes | on
if s[0:1].lower() in ['t','y','o']: # true/yes/on
return True
else:
return False
def debug (s):
"""
Prints debug output to stderr.
"""
print(s, file=sys.stderr)
def main ():
global args # promote to global scope for use in other functions
argp = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawTextHelpFormatter)
argp.add_argument('resource', action='store', default=None, help='ISE API endpoint name')
argp.add_argument('--verbose', '-v', action='count', default=0, help='Verbosity')
args = argp.parse_args()
resource_name = args.resource
if resource_name not in RESOURCE_NAMES:
if args.verbose: print("β β Invalid ISE ERS resource ({resource_name}).\nTry one of these:", file=sys.stderr)
for resource in RESOURCE_NAMES:
if args.verbose: print("β - {resource}", file=sys.stderr)
sys.exit(1)
env = { k : v for (k,v) in os.environ.items() } # Load environment variables
with requests.Session() as session:
session.auth = ( env['ISE_REST_USERNAME'], env['ISE_REST_PASSWORD'] )
session.headers.update({'Content-Type': 'application/json', 'Accept': 'application/json'})
session.verify=False if env['ISE_CERT_VERIFY'][0:1].lower() in ['f','n'] else True
# Get resource IDs
resources = []
url = f"https://{env['ISE_PPAN']}/ers/config/{resource_name}?size={ISE_PAGING_MAX}"
if args.verbose: print(f"β URL: {url}")
while (url):
r = session.get(url)
if args.verbose: print(r.text, file=sys.stderr)
if args.verbose: print(f'β Total {resource_name}: {r.json()["SearchResult"]["total"]}')
resources += r.json()["SearchResult"]["resources"]
try:
url = r.json()["SearchResult"]["nextPage"]["href"]
except Exception as e:
url = None
if args.verbose: print(f"β Got {len(resources)} resources, getting their details...")
# Show resource details
object_name = ''
details = []
for resource in resources:
url = f"https://{env['ISE_PPAN']}/ers/config/{resource_name}/{resource['id']}"
if args.verbose : print(f"β URL: {url}")
r = session.get(url)
detail = r.json()
object_name = list(detail)[0] # save the resource name for the output
detail = detail[object_name]
del detail['link'] # Delete unnecessary link attribute
if args.verbose: print(detail, file=sys.stderr)
details.append(detail)
output = {}
output[object_name] = details
print(json.dumps(output, indent=2))
if args.verbose : print(f"β Total: {len(resources)}")
if __name__ == '__main__': # Runs main() if file wasn't imported.
main()