Hi,
I´m looking for any way to create a NPM resource using SNMP traps.
When I receive SNMP traps for a specified device, I´ll see device´s status in a NPM resource page view.
Is this possible ?
Thanks
yes.
a) create a custom report that displays the information you need and embed it in the page
b) create a custom SQL query resource and put the query in it like this:
Select Caption,count(T.TrapID) as TrapCountfrom orion.nodes N inner join Orion.Traps Ton T.Nodeid=N.Nodeidwhere tag='IPV6_BGP_CONFIG_ERROR' and datetime > (getdate()-0.01)group by Captionorder by count(*) desc
I use the trap viewer to TAG traps I am interest in, in this case BGP backwards transitions for IPv6 -- means a network engineer has misconfigured IPv6 on a router normally and I need to find the chnage request and get them to fix it.