cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1955
Views
0
Helpful
2
Replies

ISE 2.4 - TACACS using local database - can I create report of users?

cooperd5
Level 1
Level 1

Hi,

have ISE 2.4 deployment using local database of network users for T+ admin on network. Can I run a report to list all current users? I can't find one and the manual export isn't ideal as it also exports passwords.

Thanks,

Darren

1 Accepted Solution

Accepted Solutions

Mike.Cifelli
VIP Alumni
VIP Alumni

I know you could rely on APIs for something similar.  If you are seeking to get an Active list your best bet would possibly be to look into MNT APIs, specifically session based ones (https://www.cisco.com/c/en/us/td/docs/security/ise/2-4/api_ref_guide/api_ref_book/ise_api_ref_ch2.html).  However, if just looking to generate a list of your internal users this would do the trick:

curl -k --include --header 'Content-Type:application/json' --header 'Accept: application/json' --user <user/pass> --request GET https://<isepan>:9060/ers/config/internaluser

You can also use these filters: [firstName, lastName, identityGroup, name, description, email, enabled]

HTH!

 

View solution in original post

2 Replies 2

Mike.Cifelli
VIP Alumni
VIP Alumni

I know you could rely on APIs for something similar.  If you are seeking to get an Active list your best bet would possibly be to look into MNT APIs, specifically session based ones (https://www.cisco.com/c/en/us/td/docs/security/ise/2-4/api_ref_guide/api_ref_book/ise_api_ref_ch2.html).  However, if just looking to generate a list of your internal users this would do the trick:

curl -k --include --header 'Content-Type:application/json' --header 'Accept: application/json' --user <user/pass> --request GET https://<isepan>:9060/ers/config/internaluser

You can also use these filters: [firstName, lastName, identityGroup, name, description, email, enabled]

HTH!

 

cooperd5
Level 1
Level 1

works a treat! 

Thank you!