Comware

 View Only
  • 1.  Procurve 2524 MIB

    Posted Dec 17, 2002 11:01 AM
    Where can I find/get the MIB of Procurve 2524? Pls help. I have searched the whole internet without success. Thanks


  • 2.  RE: Procurve 2524 MIB

    Posted Dec 17, 2002 01:27 PM
    Try:

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

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

    Ron


  • 3.  RE: Procurve 2524 MIB

    Posted Dec 17, 2002 04:08 PM
    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?


  • 4.  RE: Procurve 2524 MIB

    Posted Dec 17, 2002 06:04 PM
    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