From 98a672123c7872f6b9b75a9a2b6bb3aea504de6a Mon Sep 17 00:00:00 2001 From: David Leutgeb Date: Tue, 5 Dec 2023 12:25:34 +0100 Subject: Initial commit --- MIBS/extreme/EXTREME-OSPF-MIB | 78 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 MIBS/extreme/EXTREME-OSPF-MIB (limited to 'MIBS/extreme/EXTREME-OSPF-MIB') diff --git a/MIBS/extreme/EXTREME-OSPF-MIB b/MIBS/extreme/EXTREME-OSPF-MIB new file mode 100644 index 0000000..cb18343 --- /dev/null +++ b/MIBS/extreme/EXTREME-OSPF-MIB @@ -0,0 +1,78 @@ +-- ################################################################################ + + +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 -- cgit v1.2.3