cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
588
Views
0
Helpful
3
Replies

NAC - CAM CLI's smartmanager_conf table...Where and How?

naitsirhc81
Level 1
Level 1

I would like to tweak the OobSnmpErrorLimit, OobSnmpRecoverInterval, and OobDiscoveredClientCleanup settings as described in the 4.5 release notes.

http://www.cisco.com/en/US/docs/security/nac/appliance/release_notes/45/45rn.html

Does anyone have a step-by-step on exactly how to do this?

"You can configure this feature using the following settings in the smartmanager_conf table of the CAM

CLI"

"To enable these processes, set

OobDiscoveredClientCleanup to yes in the CAM CLI's smartmanager_conf table."

Thanks in advance...

1 Accepted Solution

Accepted Solutions

ssh to the manager

"

[root@cam ~]# psql -h 127.0.0.1 -U postgres controlsmartdb

controlsmartdb=# select * from smartmanager_conf where prop_name = 'OobDiscoveredClientCleanup';

prop_name | prop_value

-----------+------------

(0 rows)

"

to add that value

insert into smartmanager_conf (prop_name, prop_value) values ('OobDiscoveredClientCleanup','yes');

to verify, rerun the select

select * from smartmanager_conf where prop_name = 'OobDiscoveredClientCleanup';

to quit

\q

View solution in original post

3 Replies 3

naitsirhc81
Level 1
Level 1

Bump...anyone?

ssh to the manager

"

[root@cam ~]# psql -h 127.0.0.1 -U postgres controlsmartdb

controlsmartdb=# select * from smartmanager_conf where prop_name = 'OobDiscoveredClientCleanup';

prop_name | prop_value

-----------+------------

(0 rows)

"

to add that value

insert into smartmanager_conf (prop_name, prop_value) values ('OobDiscoveredClientCleanup','yes');

to verify, rerun the select

select * from smartmanager_conf where prop_name = 'OobDiscoveredClientCleanup';

to quit

\q

PERFECT.

Thank you!

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card