Files
librenms-librenms/mibs/extreme/EXTREME-OSPF-MIB
Jellyfrog ec349f5369 More MIB fixing (#14018)
* Split extreme mibs

* Split HP mibs

* Split juniper mibs

* Split junos mibs

* Split junose mibs

* Update Cisco mibs

* update comware mibs

* update transition mibs

* update extreme mibs

* Remove duplicate cambium mibs

* EXTREME-BASE-MIB > EXTREME-SYSTEM-MIB
2022-06-22 16:46:12 +02:00

79 lines
2.7 KiB
Plaintext

-- ################################################################################
EXTREME-OSPF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY FROM SNMPv2-SMI
OBJECT-TYPE FROM SNMPv2-SMI
TruthValue FROM SNMPv2-TC
RowStatus FROM SNMPv2-TC
extremeAgent FROM EXTREME-BASE-MIB
extremeVlanIfIndex FROM EXTREME-VLAN-MIB
IpAddress FROM SNMPv2-SMI;
extremeOspf MODULE-IDENTITY
LAST-UPDATED "200502140000Z"
ORGANIZATION "Extreme Networks, Inc."
CONTACT-INFO "www.extremenetworks.com"
DESCRIPTION "Extreme specific OSPF information"
::= { extremeAgent 15 }
extremeOspfInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeOspfInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Extreme Networks specific information
about OSPF interfaces."
::= { extremeOspf 1 }
extremeOspfInterfaceEntry OBJECT-TYPE
SYNTAX ExtremeOspfInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the table containing Extreme Networks specific
OSPF interface information."
INDEX {extremeVlanIfIndex}
::= {extremeOspfInterfaceTable 1}
ExtremeOspfInterfaceEntry ::= SEQUENCE {
extremeOspfAreaId IpAddress,
extremeOspfInterfacePassive TruthValue,
extremeOspfInterfaceStatus RowStatus
}
extremeOspfAreaId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifying an area.
Area ID 0.0.0.0 is used for the OSPF backbone."
::= { extremeOspfInterfaceEntry 1 }
extremeOspfInterfacePassive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the OSPF interface on this Vlan is
Passive or not. Passive interfaces do not send routing
updates. A true value indicates that the interface is passive."
::= { extremeOspfInterfaceEntry 2 }
extremeOspfInterfaceStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { extremeOspfInterfaceEntry 3 }
END