Announcements

SecurID® Discussions

Browse the SecurID discussion board to get product help and collaborate with other SecurID users.
JohnWilliamson
Beginner
Beginner

Can you run a report to list agent hosts without a radius client?

Jump to solution

You can run a report to list all agent hosts with an associated radius client, can you run the opposite and list agents without a client?  We need to identify all the windows devices using our RSA server and the first step would be to get rid of those running radius.

Labels (1)
1 Solution

Accepted Solutions
EdwardDavis
Employee
Employee

Not in a report, but on command line psql query you can do this [or variations of this theme]:

 

find agents that have corresponding radius clients

select * from am_host where primary_ip in (select ip_address from am_radius_clients); 

 

find agents that do not have corresponding radius clients

select * from am_host where primary_ip not in (select ip_address from am_radius_clients); 

 

 

View solution in original post

1 Reply
EdwardDavis
Employee
Employee

Not in a report, but on command line psql query you can do this [or variations of this theme]:

 

find agents that have corresponding radius clients

select * from am_host where primary_ip in (select ip_address from am_radius_clients); 

 

find agents that do not have corresponding radius clients

select * from am_host where primary_ip not in (select ip_address from am_radius_clients);