-
Re: How to search for VLANs by Switchport Interface?
stefanIT May 16, 2013 5:33 AM (in response to ClintW)Hi Clint,
You can do this in NPM with UnDP. Here's an example using Brocade switches:
I created the above using four OIDs:
1.3.6.1.4.1991.1.1.3.3.5.1.1 snSwIInfoPortNum Table
1.3.6.1.4.1991.1.1.3.3.5.1.24 snSwIVlanId Table
1.3.6.1.4.1991.1.1.3.3.5.1.17 snSwIName Table
1.3.6.1.4.1991.1.1.3.3.5.1.4 snSwIInfoTagMode Table
I created a new tab in the Network Node view in NPM, created a table resource on that page and assigned the above pollers to the switch nodes.
Hope this helps.
-
Re: How to search for VLANs by Switchport Interface?
bluefunelemental Aug 11, 2013 5:47 PM (in response to ClintW)Late to the post but beside being able to search by VLAN in the UDT search field you can also make a report for it - here's a quick one I created that you can add a where vlanid = 'xxx' at the end to limit your response.
SELECT n.caption, up.portifdescr,up.portdescription,up.speed,case up.duplex when 0 then 'None' when 1 then 'Full' when 2 then 'Half' end,up.administrativestatus,up.operationalstatus,uv.vlanid
FROM UDT_Port up
inner join UDT_vlan uv
on up.portid = uv.portid
inner join nodes n
on up.nodeid = n.nodeid