mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
121 lines
3.7 KiB
Plaintext
121 lines
3.7 KiB
Plaintext
|
-- ===========================================================================
|
||
|
-- AT-LOOPPROTECT.MIB, Allied Telesis enterprise
|
||
|
--
|
||
|
-- Copyright (c) 2008 by Allied Telesis, Inc.
|
||
|
-- All rights reserved.
|
||
|
--
|
||
|
-- ===========================================================================
|
||
|
|
||
|
AT-LOOPPROTECT-MIB DEFINITIONS ::= BEGIN
|
||
|
|
||
|
IMPORTS
|
||
|
modules
|
||
|
FROM AT-SMI-MIB
|
||
|
InterfaceIndex
|
||
|
FROM IF-MIB
|
||
|
OBJECT-TYPE,
|
||
|
MODULE-IDENTITY,
|
||
|
NOTIFICATION-TYPE
|
||
|
FROM SNMPv2-SMI
|
||
|
;
|
||
|
|
||
|
-- atLoopProtect - this group contains information about Loop Protection modules.
|
||
|
atLoopProtect MODULE-IDENTITY
|
||
|
LAST-UPDATED "200809220000Z"
|
||
|
ORGANIZATION "Allied Telesis, Inc."
|
||
|
CONTACT-INFO
|
||
|
"http://www.alliedtelesis.com"
|
||
|
DESCRIPTION
|
||
|
"This MIB file contains definitions of managed objects for the
|
||
|
Loop Protection modules."
|
||
|
REVISION "200808120000Z"
|
||
|
DESCRIPTION
|
||
|
"Initial version of this MIB module."
|
||
|
::= { modules 54 }
|
||
|
|
||
|
atLoopProtectAction OBJECT-TYPE
|
||
|
SYNTAX INTEGER {
|
||
|
atLoopProtectAction-LearnDisable(0),
|
||
|
atLoopProtectAction-LearnEnable(1),
|
||
|
atLoopProtectAction-PortDisable(2),
|
||
|
atLoopProtectAction-PortEnable(3),
|
||
|
atLoopProtectAction-LinkDown(4),
|
||
|
atLoopProtectAction-LinkUp(5),
|
||
|
atLoopProtectAction-VlanDisable(6),
|
||
|
atLoopProtectAction-VlanEnable(7)
|
||
|
}
|
||
|
MAX-ACCESS not-accessible
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"The Action for Loop Protection feature"
|
||
|
::= { atLoopProtect 1 }
|
||
|
|
||
|
atLoopProtectIfIndex OBJECT-TYPE
|
||
|
SYNTAX InterfaceIndex
|
||
|
MAX-ACCESS read-only
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"The interface where the loop is detected on."
|
||
|
::= { atLoopProtect 2 }
|
||
|
|
||
|
atLoopProtectVlanId OBJECT-TYPE
|
||
|
SYNTAX INTEGER
|
||
|
MAX-ACCESS read-only
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"The VLAN ID where the loop is detected on."
|
||
|
::= { atLoopProtect 3 }
|
||
|
|
||
|
atLoopProtectRxLDFIfIndex OBJECT-TYPE
|
||
|
SYNTAX InterfaceIndex
|
||
|
MAX-ACCESS read-only
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"The interface where the loop detection frame is received on."
|
||
|
::= { atLoopProtect 4 }
|
||
|
|
||
|
atLoopProtectRxLDFVlanId OBJECT-TYPE
|
||
|
SYNTAX INTEGER
|
||
|
MAX-ACCESS read-only
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"The VLAN ID where the loop detection frame is received on."
|
||
|
::= { atLoopProtect 5 }
|
||
|
|
||
|
-- atLoopProtect traps - traps exist for changes to detect a packet loop.
|
||
|
|
||
|
atLoopProtectTrap OBJECT IDENTIFIER ::= { atLoopProtect 0 }
|
||
|
|
||
|
atLoopProtectDetectedLoopBlockedTrap NOTIFICATION-TYPE
|
||
|
OBJECTS { atLoopProtectIfIndex,
|
||
|
atLoopProtectVlanId,
|
||
|
atLoopProtectAction
|
||
|
}
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"Generated when Loop Protection feature blocks a interface with a loop."
|
||
|
::= { atLoopProtectTrap 1 }
|
||
|
|
||
|
atLoopProtectRecoverLoopBlockedTrap NOTIFICATION-TYPE
|
||
|
OBJECTS { atLoopProtectIfIndex,
|
||
|
atLoopProtectVlanId,
|
||
|
atLoopProtectAction
|
||
|
}
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"Generated when Loop Protection feature restores a blocked interface back to normal operation."
|
||
|
::= { atLoopProtectTrap 2 }
|
||
|
|
||
|
atLoopProtectDetectedByLoopDetectionTrap NOTIFICATION-TYPE
|
||
|
OBJECTS { atLoopProtectIfIndex,
|
||
|
atLoopProtectVlanId,
|
||
|
atLoopProtectRxLDFIfIndex,
|
||
|
atLoopProtectRxLDFVlanId
|
||
|
}
|
||
|
STATUS current
|
||
|
DESCRIPTION
|
||
|
"Generated when Loop Protection feature detects a loop by Loop Detection method."
|
||
|
::= { atLoopProtectTrap 3 }
|
||
|
|
||
|
END
|