Switches, Hubs, and Modems
1753715 Members
4924 Online
108799 Solutions
New Discussion юеВ

Procurve 2524 MIB

 
Ken Wang
Occasional Contributor

Procurve 2524 MIB

Where can I find/get the MIB of Procurve 2524? Pls help. I have searched the whole internet without success. Thanks
3 REPLIES 3
Ron Kinner
Honored Contributor

Re: Procurve 2524 MIB

Try:

http://www.hp.com/rnd/software/MIBs.htm

it says it is for: "all manageable HP network connectivity products"

Ron
Ken Wang
Occasional Contributor

Re: Procurve 2524 MIB

Ron,

Thanks. It's the info I want. However, there are about 50 MIBs for 2524 (J4813A). while all I need is to find out the (port, MAC) pair, i.e. given MAC, how do I find out which port it is coming from? Can anyone help? Is MIB the right place for this type of info?
Ron Kinner
Honored Contributor

Re: Procurve 2524 MIB

snFdbTable (and its subentries) found in the MIB file: hpr-sn-switch.mib should provide the info you need.

nFdbStationIndex OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The FDB Station index to the Fdb Station Table."
::= { snFdbEntry 1 }

snFdbStationAddr OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The snFdbs physical address. The physical address
represents a MAC Station."
::= { snFdbEntry 2 }


snFdbStationPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Station slot/port number.
The bit 0 to bit 7: port number.
The bit 8 to bit 11: slot number (slot for chassis only)."
::= { snFdbEntry 3 }


snFdbVLanId OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Station VLan ID."
::= { snFdbEntry 4 }

Ron