I need to set the "UnManaged" bit on multiple interfaces (close to 4k) so NPM will no longer poll those interfaces.
I tested this on a single switch with 58 total interfaces (55 of them were down - or in SQL, [Status] <> '1').
This is the TSQL command I ran:
Use NetPerfMon
UPDATE
dbo.Interfaces
SET Unmanaged = 1
WHERE Fullname like 'BuildingE_Switch%' AND Status <> 1
I verified my command worked in SQL then went out to my NPM Web Console and see that all the interfaces still have checkmarks next to them as if they are still going to be polled.
Any idea why my web console isn't correctly reading the database? Any ideas on another way I can accomplish my need to "unmanage" those 4k interfaces?
Thanks, Joni