initial commit; version 22.5.12042
This commit is contained in:
312
mibs/nec/A100-R1-MIB
Normal file
312
mibs/nec/A100-R1-MIB
Normal file
@ -0,0 +1,312 @@
|
||||
|
||||
--
|
||||
-- Copyright (c) 1994 by cisco Systems, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
--------------------------------------------------------------------
|
||||
|
||||
A100-R1-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises FROM RFC1155-SMI
|
||||
OBJECT-TYPE FROM RFC-1212
|
||||
DisplayString FROM RFC1213-MIB;
|
||||
|
||||
-- ciscoA100Mib MODULE-IDENTITY
|
||||
-- LAST-UPDATED "9411170000Z"
|
||||
-- ORGANIZATION "Cisco Systems, Inc."
|
||||
-- CONTACT-INFO
|
||||
-- " Cisco Systems
|
||||
-- Customer Service
|
||||
--
|
||||
-- Postal: 170 W Tasman Drive
|
||||
-- San Jose, CA 95134
|
||||
-- USA
|
||||
--
|
||||
-- Tel: +1 800 553-NETS
|
||||
--
|
||||
-- E-mail: cs-atm@cisco.com"
|
||||
-- DESCRIPTION
|
||||
-- "The MIB for the Cisco/NEC A100 ATM switch."
|
||||
-- REVISION "9411170000Z"
|
||||
-- DESCRIPTION
|
||||
-- "Initial version of this MIB module."
|
||||
-- ::= { xxx }
|
||||
|
||||
nec OBJECT IDENTIFIER ::= { enterprises 119 }
|
||||
nec-mib OBJECT IDENTIFIER ::= { nec 2 }
|
||||
necProductDepend OBJECT IDENTIFIER ::= { nec-mib 3 }
|
||||
atomis-mib OBJECT IDENTIFIER ::= { necProductDepend 14 }
|
||||
m5core-mib OBJECT IDENTIFIER ::= { atomis-mib 3 }
|
||||
|
||||
|
||||
-- MIB Groups
|
||||
--
|
||||
-- Node group
|
||||
node OBJECT IDENTIFIER ::= { m5core-mib 1 }
|
||||
-- Line interface group
|
||||
linf OBJECT IDENTIFIER ::= { m5core-mib 2 }
|
||||
-- Connection group
|
||||
conn OBJECT IDENTIFIER ::= { m5core-mib 3 }
|
||||
-- Performance group
|
||||
perf OBJECT IDENTIFIER ::= { m5core-mib 4 }
|
||||
|
||||
|
||||
|
||||
-- The Node Group
|
||||
|
||||
nodeOperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
down(1),
|
||||
active(2),
|
||||
off-line(3),
|
||||
testing(4),
|
||||
initializing(5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Operational status of the Model 5."
|
||||
::= { node 1 }
|
||||
|
||||
nodeIfConfTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF NodeIfConfEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Configuration of the line cards."
|
||||
::= { node 2 }
|
||||
|
||||
nodeIfConfEntry OBJECT-TYPE
|
||||
SYNTAX NodeIfConfEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"-"
|
||||
INDEX { nodeIfConfIndex }
|
||||
::= { nodeIfConfTable 1 }
|
||||
|
||||
NodeIfConfEntry ::= SEQUENCE {
|
||||
nodeIfConfIndex INTEGER,
|
||||
nodeIfConfPhysType INTEGER,
|
||||
nodeIfConfRev DisplayString,
|
||||
nodeIfConfStatus INTEGER
|
||||
}
|
||||
|
||||
nodeIfConfIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The index of the table."
|
||||
::= { nodeIfConfEntry 1 }
|
||||
|
||||
nodeIfConfPhysType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
other(1),
|
||||
sar(2),
|
||||
taxi100M(3),
|
||||
oc3cSMF(4),
|
||||
oc-3cMMF(5),
|
||||
ds3-PLCP-SCRAMBLE(6),
|
||||
ds3-PLCP-noScramble(7),
|
||||
relay-6Mcel(8),
|
||||
notInstalled(99)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The PMD/physical layer format of the line cards."
|
||||
::= { nodeIfConfEntry 2 }
|
||||
|
||||
nodeIfConfRev OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The revision of the line cards.
|
||||
Implemented by JUL/1994."
|
||||
::= { nodeIfConfEntry 3 }
|
||||
|
||||
nodeIfConfStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
other(1),
|
||||
inService(2),
|
||||
outOfService(3),
|
||||
testing(4),
|
||||
localLoopBack(5),
|
||||
remoteLoopBack(6),
|
||||
notInstalled(99)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Operational status of the line cards."
|
||||
::= { nodeIfConfEntry 4 }
|
||||
|
||||
nodeFanStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Operational status of the FAN."
|
||||
::= { node 3 }
|
||||
|
||||
nodeUpcWindowSize OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..120)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"UPC window size. Integer Wi represents Wi X 512 cell time.
|
||||
Wi=1 correspond to 1.4msec. Wi=120 correspond to 168msec.
|
||||
It is not allowed to change window size when the PVC is
|
||||
exsisting."
|
||||
::= { node 4 }
|
||||
|
||||
nodeBestEffortBufferSize OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Input buffer capacity for Best Effort traffic(Bb). The number
|
||||
of cells stored in the buffer is Bb X 128. The default value is
|
||||
0. The sum of the buffer capacity is 2047 cells."
|
||||
::= { node 5 }
|
||||
|
||||
nodeGuaranteedBufferSize OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Input buffer capacity for Guaranteed traffic(Bg). The number
|
||||
of cells stored in the buffer is Bg X 128. The default value is
|
||||
0. The sum of the buffer capacity is 2047 cells."
|
||||
::= { node 6 }
|
||||
|
||||
nodeBestEffortBufferThreshold OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Threshold buffer capacity for Best Effort traffic. If the
|
||||
number of cells stored in the buffer exceeds this threshold,
|
||||
cells with CLP=1 and traffic defined as UBR will be discarded."
|
||||
::= { node 7 }
|
||||
|
||||
nodeGuaranteedBufferThreshold OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16)
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Threshold buffer capacity for Guaranteed traffic. If the
|
||||
number of cells stored in the buffer exceeds this threshold,
|
||||
cells with CLP=1 and traffic defined as VBR will be discarded."
|
||||
::= { node 8 }
|
||||
|
||||
nodeSaveConf OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
save(1)
|
||||
}
|
||||
ACCESS write-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Save system configuration information including PVC/SVC table
|
||||
to the non-volatile memory. save(1) shall be written in case
|
||||
of saving the configiration data."
|
||||
::= { node 9 }
|
||||
|
||||
nodeSaveResult OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
temporaryFailure(1),
|
||||
notReady(2),
|
||||
ready(3),
|
||||
succeed(4),
|
||||
nearend(5)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Show the result of the save command issued from NMS.
|
||||
The result is either Succeed/temporary failure/notReady.
|
||||
nearend will be returned if the number of access times
|
||||
has exceeded the limit."
|
||||
::= { node 10 }
|
||||
|
||||
|
||||
-- The Linf Group
|
||||
|
||||
linfStatusTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF LinfStatusEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Status of the line card including ATM specific information."
|
||||
::= { linf 1 }
|
||||
|
||||
linfStatusEntry OBJECT-TYPE
|
||||
SYNTAX LinfStatusEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
" - "
|
||||
INDEX { linfIndex }
|
||||
::= { linfStatusTable 1 }
|
||||
|
||||
LinfStatusEntry ::= SEQUENCE {
|
||||
linfIndex INTEGER,
|
||||
linfStatus INTEGER,
|
||||
linfConf INTEGER
|
||||
}
|
||||
|
||||
linfIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER(1..64)
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
" - "
|
||||
::= { linfStatusEntry 1 }
|
||||
|
||||
linfStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(1),
|
||||
los(2),
|
||||
lof(3),
|
||||
loc(4),
|
||||
ais(5),
|
||||
yellow-line(6),
|
||||
yellow-path(7),
|
||||
lop(8),
|
||||
notInstalled(99)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Status of the line cards"
|
||||
::= { linfStatusEntry 2 }
|
||||
|
||||
linfConf OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
public-UNI(1),
|
||||
private-UNI(2),
|
||||
private-NNI(3),
|
||||
others(99)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"Line card type."
|
||||
::= { linfStatusEntry 3 }
|
||||
|
||||
-- The Conn (Connection & Traffic for accounting) Group
|
||||
|
||||
-- to be included in next release
|
||||
|
||||
-- The Perf (Performance) Group
|
||||
|
||||
-- to be included in next release
|
||||
|
||||
END
|
||||
|
23918
mibs/nec/IPE-COMMON-MIB
Normal file
23918
mibs/nec/IPE-COMMON-MIB
Normal file
File diff suppressed because it is too large
Load Diff
751
mibs/nec/IPE-COMMON1000-MIB
Normal file
751
mibs/nec/IPE-COMMON1000-MIB
Normal file
@ -0,0 +1,751 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:41 2016
|
||||
--
|
||||
|
||||
IPE-COMMON1000-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
DateAndTime, DisplayString, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
OffOnValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Off/On Type"
|
||||
SYNTAX INTEGER { invalid(0), off(1), on(2) }
|
||||
|
||||
SeverityValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Severity (CCITT Rec. X.733)"
|
||||
SYNTAX INTEGER {
|
||||
cleared(1),
|
||||
indetermine(2),
|
||||
critical(3),
|
||||
major(4),
|
||||
minor(5),
|
||||
warning(6)
|
||||
}
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
system5 OBJECT IDENTIFIER
|
||||
::= { radioEquipment 5 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- system5 Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
ipeConfigurationGroup OBJECT IDENTIFIER
|
||||
::= { system5 3 }
|
||||
|
||||
ipeCfgPortGroup OBJECT IDENTIFIER
|
||||
::= { ipeConfigurationGroup 15 }
|
||||
|
||||
ipeCfgPortLct1kTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpeCfgPortLct1kEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"LCT port set up information table.
|
||||
TABSZ=1"
|
||||
::= { ipeCfgPortGroup 8 }
|
||||
|
||||
ipeCfgPortLct1kEntry OBJECT-TYPE
|
||||
SYNTAX IpeCfgPortLct1kEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "entry of LCT port set up information table."
|
||||
INDEX { ipeCfgPortLct1kIndex }
|
||||
::= { ipeCfgPortLct1kTable 1 }
|
||||
|
||||
IpeCfgPortLct1kEntry ::= SEQUENCE {
|
||||
ipeCfgPortLct1kIndex Integer32,
|
||||
ipeCfgPortLct1kNEAddress IpAddress,
|
||||
ipeCfgPortLct1kIpAddress IpAddress,
|
||||
ipeCfgPortLct1kNetMask IpAddress,
|
||||
ipeCfgPortLct1kEnable INTEGER,
|
||||
ipeCfgPortLct1kMtu Integer32,
|
||||
ipeCfgPortLct1kAutoNeg INTEGER
|
||||
}
|
||||
|
||||
ipeCfgPortLct1kIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { ipeCfgPortLct1kEntry 1 }
|
||||
|
||||
ipeCfgPortLct1kNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { ipeCfgPortLct1kEntry 2 }
|
||||
|
||||
ipeCfgPortLct1kIpAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "IPaddress of LCT port."
|
||||
::= { ipeCfgPortLct1kEntry 3 }
|
||||
|
||||
ipeCfgPortLct1kNetMask OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Subnet mask of LCT port."
|
||||
::= { ipeCfgPortLct1kEntry 4 }
|
||||
|
||||
ipeCfgPortLct1kEnable OBJECT-TYPE
|
||||
SYNTAX INTEGER { enabled(1), disabled(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Effective/invalid setting of LCT port."
|
||||
::= { ipeCfgPortLct1kEntry 5 }
|
||||
|
||||
ipeCfgPortLct1kMtu OBJECT-TYPE
|
||||
SYNTAX Integer32 (256..1500)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"MTU value of LCT.
|
||||
value range:256 to 1500"
|
||||
::= { ipeCfgPortLct1kEntry 6 }
|
||||
|
||||
ipeCfgPortLct1kAutoNeg OBJECT-TYPE
|
||||
SYNTAX INTEGER { enabled(1), disabled(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Effective/invalid setting of LCT AUTO NEGOTIATION.
|
||||
value range: enabled
|
||||
disabled"
|
||||
::= { ipeCfgPortLct1kEntry 7 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
alarmStatusGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 3 }
|
||||
|
||||
provisioningGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 5 }
|
||||
|
||||
maintenanceGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 6 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- alarmStatusGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
asMainCtrlGroup OBJECT IDENTIFIER
|
||||
::= { alarmStatusGroup 35 }
|
||||
|
||||
asMainCtrlGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsMainCtrlGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Main card group object for iPASO1000."
|
||||
::= { asMainCtrlGroup 1 }
|
||||
|
||||
asMainCtrlGroupEntry OBJECT-TYPE
|
||||
SYNTAX AsMainCtrlGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asMainCtrlGroupIndex }
|
||||
::= { asMainCtrlGroupTable 1 }
|
||||
|
||||
AsMainCtrlGroupEntry ::= SEQUENCE {
|
||||
asMainCtrlGroupIndex Integer32,
|
||||
asMainCtrlGroupNEAddress IpAddress,
|
||||
ctrlGroupSvLineAlarm SeverityValue,
|
||||
ctrlGroupIduTotalAlarm SeverityValue,
|
||||
ctrlGroupMaintenance OffOnValue,
|
||||
ctrlGroupComFail SeverityValue,
|
||||
ctrlGroupFirmwareVerMismatch SeverityValue,
|
||||
ctrlGroupCardMismatch SeverityValue,
|
||||
ctrlGroupHardwareVerMismatch SeverityValue,
|
||||
ctrlGroupMountedClk2mMismatch SeverityValue,
|
||||
ctrlGroupSwitchOverFailure OffOnValue,
|
||||
ctrlGroupSwitchComplete OffOnValue,
|
||||
ctrlGroupForcedSbySwitchComplete OffOnValue,
|
||||
ctrlGroupSwitchedTime DateAndTime,
|
||||
ctrlGroupSwitchedReason DisplayString,
|
||||
ctrlGroupConfigDataStoredTime DateAndTime,
|
||||
ctrlGroupSbyBusErrorTx SeverityValue,
|
||||
ctrlGroupSbyBusErrorRx SeverityValue,
|
||||
ctrlGroupSbyTermComFailAlarm SeverityValue,
|
||||
ctrlGroupDbMismatch SeverityValue,
|
||||
ctrlGroupSoftkeyEquipSerialMismatch SeverityValue
|
||||
}
|
||||
|
||||
asMainCtrlGroupIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..1)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asMainCtrlGroupEntry 1 }
|
||||
|
||||
asMainCtrlGroupNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asMainCtrlGroupEntry 2 }
|
||||
|
||||
ctrlGroupSvLineAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "SV Line Alarm"
|
||||
::= { asMainCtrlGroupEntry 3 }
|
||||
|
||||
ctrlGroupIduTotalAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "IDU Alarm"
|
||||
::= { asMainCtrlGroupEntry 4 }
|
||||
|
||||
ctrlGroupMaintenance OBJECT-TYPE
|
||||
SYNTAX OffOnValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Maintenance"
|
||||
::= { asMainCtrlGroupEntry 5 }
|
||||
|
||||
ctrlGroupComFail OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Communication FAIL"
|
||||
::= { asMainCtrlGroupEntry 6 }
|
||||
|
||||
ctrlGroupFirmwareVerMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Firmware Version Mismatch"
|
||||
::= { asMainCtrlGroupEntry 7 }
|
||||
|
||||
ctrlGroupCardMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Card Type Mismatch"
|
||||
::= { asMainCtrlGroupEntry 8 }
|
||||
|
||||
ctrlGroupHardwareVerMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Hardware Version Mismatch"
|
||||
::= { asMainCtrlGroupEntry 9 }
|
||||
|
||||
ctrlGroupMountedClk2mMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Option Card Mismatch"
|
||||
::= { asMainCtrlGroupEntry 10 }
|
||||
|
||||
ctrlGroupSwitchOverFailure OBJECT-TYPE
|
||||
SYNTAX OffOnValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Switch Over Fail"
|
||||
::= { asMainCtrlGroupEntry 11 }
|
||||
|
||||
ctrlGroupSwitchComplete OBJECT-TYPE
|
||||
SYNTAX OffOnValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Switch Complete"
|
||||
::= { asMainCtrlGroupEntry 12 }
|
||||
|
||||
ctrlGroupForcedSbySwitchComplete OBJECT-TYPE
|
||||
SYNTAX OffOnValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Forced Switch Complete"
|
||||
::= { asMainCtrlGroupEntry 13 }
|
||||
|
||||
ctrlGroupSwitchedTime OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Switched Time"
|
||||
::= { asMainCtrlGroupEntry 14 }
|
||||
|
||||
ctrlGroupSwitchedReason OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Switched Reason"
|
||||
::= { asMainCtrlGroupEntry 15 }
|
||||
|
||||
ctrlGroupConfigDataStoredTime OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Config Data Stored Time"
|
||||
::= { asMainCtrlGroupEntry 16 }
|
||||
|
||||
ctrlGroupSbyBusErrorTx OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "SBY TX Bus Error"
|
||||
::= { asMainCtrlGroupEntry 17 }
|
||||
|
||||
ctrlGroupSbyBusErrorRx OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "SBY RX Bus Error"
|
||||
::= { asMainCtrlGroupEntry 18 }
|
||||
|
||||
ctrlGroupSbyTermComFailAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "SBY Communication Fail (TERM)"
|
||||
::= { asMainCtrlGroupEntry 19 }
|
||||
|
||||
ctrlGroupDbMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "DB Mismatch"
|
||||
::= { asMainCtrlGroupEntry 20 }
|
||||
|
||||
ctrlGroupSoftkeyEquipSerialMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Software Key Equip Serial Mismatch"
|
||||
::= { asMainCtrlGroupEntry 21 }
|
||||
|
||||
asMainCtrlCardTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsMainCtrlCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Main card object for iPASO1000."
|
||||
::= { asMainCtrlGroup 2 }
|
||||
|
||||
asMainCtrlCardEntry OBJECT-TYPE
|
||||
SYNTAX AsMainCtrlCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asMainCtrlCardIndex }
|
||||
::= { asMainCtrlCardTable 1 }
|
||||
|
||||
AsMainCtrlCardEntry ::= SEQUENCE {
|
||||
asMainCtrlCardIndex Integer32,
|
||||
asMainCtrlCardNEAddress IpAddress,
|
||||
mainCardAlarm SeverityValue,
|
||||
mainUsbFailure SeverityValue,
|
||||
mainCpuAlarm SeverityValue,
|
||||
mainMemoryFailure SeverityValue,
|
||||
mainClk2mMount INTEGER,
|
||||
mainCardRunningStatus INTEGER,
|
||||
mainTempAlarm SeverityValue,
|
||||
mainCtrlUnequipped SeverityValue,
|
||||
mainCtrlBusError SeverityValue,
|
||||
mainTemperature Integer32,
|
||||
mainFPGAMismatch SeverityValue
|
||||
}
|
||||
|
||||
asMainCtrlCardIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (17..18)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asMainCtrlCardEntry 1 }
|
||||
|
||||
asMainCtrlCardNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asMainCtrlCardEntry 2 }
|
||||
|
||||
mainCardAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Main Card Alarm"
|
||||
::= { asMainCtrlCardEntry 3 }
|
||||
|
||||
mainUsbFailure OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Main Card USB Fail"
|
||||
::= { asMainCtrlCardEntry 4 }
|
||||
|
||||
mainCpuAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Main Card CPU Alarm"
|
||||
::= { asMainCtrlCardEntry 5 }
|
||||
|
||||
mainMemoryFailure OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Main Card Memory Fail"
|
||||
::= { asMainCtrlCardEntry 6 }
|
||||
|
||||
mainClk2mMount OBJECT-TYPE
|
||||
SYNTAX INTEGER { unmount(1), mount(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Main Clock Mount status"
|
||||
::= { asMainCtrlCardEntry 7 }
|
||||
|
||||
mainCardRunningStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
act(1),
|
||||
sby(2),
|
||||
flt(3),
|
||||
actFlt(4),
|
||||
sbyFlt(5),
|
||||
init(6),
|
||||
oos(7),
|
||||
initFlt(8),
|
||||
unmount(9)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Running Status"
|
||||
::= { asMainCtrlCardEntry 8 }
|
||||
|
||||
mainTempAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Temperature"
|
||||
::= { asMainCtrlCardEntry 9 }
|
||||
|
||||
mainCtrlUnequipped OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Mount Status"
|
||||
::= { asMainCtrlCardEntry 10 }
|
||||
|
||||
mainCtrlBusError OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Bus Error"
|
||||
::= { asMainCtrlCardEntry 11 }
|
||||
|
||||
mainTemperature OBJECT-TYPE
|
||||
SYNTAX Integer32 (-999..-999|-500..1500)
|
||||
UNITS "0.1 degree"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Main Card Temperature.
|
||||
range: -200~900(iPASOLINK200/400/1000series/EX/iX),
|
||||
-200~1500(iPASOLINK VR series), -500~1500(iPASOLINK EX/A)
|
||||
if the unexpected condition happened, the object reports value
|
||||
'-999'."
|
||||
::= { asMainCtrlCardEntry 12 }
|
||||
|
||||
mainFPGAMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Firmware / FPGA Mismatch"
|
||||
::= { asMainCtrlCardEntry 13 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- provisioningGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
provCtrl1kGroup OBJECT IDENTIFIER
|
||||
::= { provisioningGroup 35 }
|
||||
|
||||
provMiscDescriptionTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvMiscDescriptionEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents the description table that the user can describe."
|
||||
::= { provCtrl1kGroup 1 }
|
||||
|
||||
provMiscDescriptionEntry OBJECT-TYPE
|
||||
SYNTAX ProvMiscDescriptionEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provMiscDescriptionIndex }
|
||||
::= { provMiscDescriptionTable 1 }
|
||||
|
||||
ProvMiscDescriptionEntry ::= SEQUENCE {
|
||||
provMiscDescriptionIndex Integer32,
|
||||
provMiscDescriptionNEAddress IpAddress,
|
||||
provMiscDescription1 DisplayString,
|
||||
provMiscDescription2 DisplayString,
|
||||
provMiscDescription3 DisplayString,
|
||||
provMiscDescription4 DisplayString,
|
||||
provMiscDescription5 DisplayString,
|
||||
provMiscDescription6 DisplayString,
|
||||
provMiscDescription7 DisplayString,
|
||||
provMiscDescription8 DisplayString,
|
||||
provMiscDescription9 DisplayString
|
||||
}
|
||||
|
||||
provMiscDescriptionIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..23)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provMiscDescriptionEntry 1 }
|
||||
|
||||
provMiscDescriptionNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provMiscDescriptionEntry 2 }
|
||||
|
||||
provMiscDescription1 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 1."
|
||||
::= { provMiscDescriptionEntry 3 }
|
||||
|
||||
provMiscDescription2 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 2."
|
||||
::= { provMiscDescriptionEntry 4 }
|
||||
|
||||
provMiscDescription3 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 3."
|
||||
::= { provMiscDescriptionEntry 5 }
|
||||
|
||||
provMiscDescription4 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 4."
|
||||
::= { provMiscDescriptionEntry 6 }
|
||||
|
||||
provMiscDescription5 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 5."
|
||||
::= { provMiscDescriptionEntry 7 }
|
||||
|
||||
provMiscDescription6 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 6."
|
||||
::= { provMiscDescriptionEntry 8 }
|
||||
|
||||
provMiscDescription7 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 7."
|
||||
::= { provMiscDescriptionEntry 9 }
|
||||
|
||||
provMiscDescription8 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 8."
|
||||
::= { provMiscDescriptionEntry 10 }
|
||||
|
||||
provMiscDescription9 OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Description area 9."
|
||||
::= { provMiscDescriptionEntry 11 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- maintenanceGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
maintCtrlGroup OBJECT IDENTIFIER
|
||||
::= { maintenanceGroup 35 }
|
||||
|
||||
maintCtrlGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MaintCtrlGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maintenance function for main card group on iPASO1000."
|
||||
::= { maintCtrlGroup 1 }
|
||||
|
||||
maintCtrlGroupEntry OBJECT-TYPE
|
||||
SYNTAX MaintCtrlGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { maintCtrlGroupIndex }
|
||||
::= { maintCtrlGroupTable 1 }
|
||||
|
||||
MaintCtrlGroupEntry ::= SEQUENCE {
|
||||
maintCtrlGroupIndex Integer32,
|
||||
maintCtrlGroupNEAddress IpAddress,
|
||||
maintCtrlGroupReset INTEGER,
|
||||
maintCtrlGroupSwControl INTEGER,
|
||||
maintCtrlGroupMain1Oos INTEGER,
|
||||
maintCtrlGroupMain2Oos INTEGER,
|
||||
maintCtrlGroupMain1ForcedOos INTEGER,
|
||||
maintCtrlGroupMain2ForcedOos INTEGER,
|
||||
maintCtrlGroupFirmwareCopy INTEGER,
|
||||
maintCtrlGroupFirmwareCopyStatus INTEGER
|
||||
}
|
||||
|
||||
maintCtrlGroupIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..1)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { maintCtrlGroupEntry 1 }
|
||||
|
||||
maintCtrlGroupNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { maintCtrlGroupEntry 2 }
|
||||
|
||||
maintCtrlGroupSwControl OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), switchOver(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Switch Over"
|
||||
::= { maintCtrlGroupEntry 4 }
|
||||
|
||||
maintCtrlGroupMain1Oos OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), oos(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Main1 Card Status Change"
|
||||
::= { maintCtrlGroupEntry 5 }
|
||||
|
||||
maintCtrlGroupMain2Oos OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), oos(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Main2 Card Status Change"
|
||||
::= { maintCtrlGroupEntry 6 }
|
||||
|
||||
maintCtrlCardTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MaintCtrlCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Maintenance function for main card on iPASO1000."
|
||||
::= { maintCtrlGroup 2 }
|
||||
|
||||
maintCtrlCardEntry OBJECT-TYPE
|
||||
SYNTAX MaintCtrlCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { maintCtrlCardIndex }
|
||||
::= { maintCtrlCardTable 1 }
|
||||
|
||||
MaintCtrlCardEntry ::= SEQUENCE {
|
||||
maintCtrlCardIndex Integer32,
|
||||
maintCtrlCardNEAddress IpAddress,
|
||||
maintCtrlCardReset INTEGER,
|
||||
maintCtrlCardLANDeviceReset INTEGER,
|
||||
maintCtrlSoftwareReset INTEGER,
|
||||
maintCtrlCardHardwareReset INTEGER
|
||||
}
|
||||
|
||||
maintCtrlCardIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (17..18)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { maintCtrlCardEntry 1 }
|
||||
|
||||
maintCtrlCardNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { maintCtrlCardEntry 2 }
|
||||
|
||||
maintCtrlCardReset OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), reset(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "H/W Reset"
|
||||
::= { maintCtrlCardEntry 3 }
|
||||
|
||||
maintCtrlSoftwareReset OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
resetNormal(1),
|
||||
resetRevert(2),
|
||||
resetNone(3)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "F/W Reset"
|
||||
::= { maintCtrlCardEntry 5 }
|
||||
|
||||
maintCtrlCardHardwareReset OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), reset(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "H/W Reset"
|
||||
::= { maintCtrlCardEntry 6 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
616
mibs/nec/IPE-DHCP-MAIN-MIB
Normal file
616
mibs/nec/IPE-DHCP-MAIN-MIB
Normal file
@ -0,0 +1,616 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:01:02 2016
|
||||
--
|
||||
|
||||
IPE-DHCP-MAIN-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
InterfaceIndex
|
||||
FROM IF-MIB
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
DateAndTime, MacAddress, RowStatus, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
EnableDisableValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Enable/Disable Type"
|
||||
SYNTAX INTEGER { invalid(0), disable(1), enable(2) }
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
system5 OBJECT IDENTIFIER
|
||||
::= { radioEquipment 5 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- system5 Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
ipeConfigurationGroup OBJECT IDENTIFIER
|
||||
::= { system5 3 }
|
||||
|
||||
ipeCfgDhcpGroup OBJECT IDENTIFIER
|
||||
::= { ipeConfigurationGroup 13 }
|
||||
|
||||
ipeCfgDhcpMainServerTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpeCfgDhcpMainServerEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IPv4 DHCP server/relay configuraion table for main traffic."
|
||||
::= { ipeCfgDhcpGroup 2 }
|
||||
|
||||
ipeCfgDhcpMainServerEntry OBJECT-TYPE
|
||||
SYNTAX IpeCfgDhcpMainServerEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Entry of IPv4 DHCP server/relay configuraion table."
|
||||
INDEX { ipeCfgDhcpMainServerIndex }
|
||||
::= { ipeCfgDhcpMainServerTable 1 }
|
||||
|
||||
IpeCfgDhcpMainServerEntry ::= SEQUENCE {
|
||||
ipeCfgDhcpMainServerIndex Integer32,
|
||||
ipeCfgDhcpMainServerNEAddress IpAddress,
|
||||
ipeCfgDhcpMainServerEnable EnableDisableValue,
|
||||
ipeCfgDhcpMainServerMode INTEGER,
|
||||
ipeCfgDhcpMainServerInterface InterfaceIndex,
|
||||
ipeCfgDhcpMainServerIpAddr IpAddress,
|
||||
ipeCfgDhcpMainServerLeaseTime Integer32,
|
||||
ipeCfgDhcpMainServerLeaseAddrRangeBegin IpAddress,
|
||||
ipeCfgDhcpMainServerLeaseAddrRangeEnd IpAddress,
|
||||
ipeCfgDhcpMainServerLeaseAddrExcludeBegin IpAddress,
|
||||
ipeCfgDhcpMainServerLeaseAddrExcludeEnd IpAddress,
|
||||
ipeCfgDhcpMainServerOptGatewayAddrEnable INTEGER,
|
||||
ipeCfgDhcpMainServerOptGatewayAddr IpAddress,
|
||||
ipeCfgDhcpMainServerOptDnsServerPrimary IpAddress,
|
||||
ipeCfgDhcpMainServerOptDnsServerSecondary IpAddress,
|
||||
ipeCfgDhcpMainServerOptSpecifyEnable EnableDisableValue,
|
||||
ipeCfgDhcpMainServerOptSpecifyId Integer32,
|
||||
ipeCfgDhcpMainServerOptSpecifyType INTEGER,
|
||||
ipeCfgDhcpMainServerOptSpecifyValue OCTET STRING,
|
||||
ipeCfgDhcpMainServerSecurityLevel INTEGER,
|
||||
ipeCfgDhcpMainServerRegisteredMacId Integer32
|
||||
}
|
||||
|
||||
ipeCfgDhcpMainServerIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..16)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { ipeCfgDhcpMainServerEntry 1 }
|
||||
|
||||
ipeCfgDhcpMainServerNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Reserved object for northbound interface."
|
||||
::= { ipeCfgDhcpMainServerEntry 2 }
|
||||
|
||||
ipeCfgDhcpMainServerEnable OBJECT-TYPE
|
||||
SYNTAX EnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Enable/Disable this DHCP server/relay agent.
|
||||
|
||||
disable : DHCP server/relay agent is disabled
|
||||
enable : DHCP server/relay agent is enabled"
|
||||
DEFVAL { disable }
|
||||
::= { ipeCfgDhcpMainServerEntry 3 }
|
||||
|
||||
ipeCfgDhcpMainServerMode OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), server(1), relay(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Configuration of operation mode.
|
||||
|
||||
server : This instance is DHCP server mode.
|
||||
relay : This instance is DHCP relay agent mode.
|
||||
|
||||
When ipeCfgDhcpMainServerIndex is 1-3, both server and relay can
|
||||
configurable. In this case, the default value is server.
|
||||
When ipeCfgDhcpMainServerIndex is 4-16, only relay can
|
||||
configurable. In this case, the default value is relay."
|
||||
::= { ipeCfgDhcpMainServerEntry 4 }
|
||||
|
||||
ipeCfgDhcpMainServerInterface OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Interface index of local m-plane interface which communicate
|
||||
with DHCP client.
|
||||
The value of this object doesn't overlap with other instance."
|
||||
::= { ipeCfgDhcpMainServerEntry 5 }
|
||||
|
||||
ipeCfgDhcpMainServerIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IPv4 address of DHCP server.
|
||||
This object is effective only if DHCP relay agent mode."
|
||||
::= { ipeCfgDhcpMainServerEntry 6 }
|
||||
|
||||
ipeCfgDhcpMainServerLeaseTime OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..0|60..259200)
|
||||
UNITS "seconds"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The lease time of IPv4 Address provides to DHCP Client. The unit
|
||||
is seconds.
|
||||
0 means inifinity.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { 86400 }
|
||||
::= { ipeCfgDhcpMainServerEntry 7 }
|
||||
|
||||
ipeCfgDhcpMainServerLeaseAddrRangeBegin OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"First IPv4 address within the range of lease address.
|
||||
This IP address is less equal than
|
||||
ipeCfgDhcpMainServerAddrRangeEnd.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 8 }
|
||||
|
||||
ipeCfgDhcpMainServerLeaseAddrRangeEnd OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Last IPv4 address within the range of lease address.
|
||||
This IPv4 address is greater equal than
|
||||
ipeCfgDhcpMainServerAddrRangeBegin. This object is effective only
|
||||
if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 9 }
|
||||
|
||||
ipeCfgDhcpMainServerLeaseAddrExcludeBegin OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"First IPv4 address within the range of lease exclude address.
|
||||
DHCP server don't lease IP address within lease exclude address.
|
||||
This IPv4 address is less equal than ipeCfgDhcpMainServerAddr-
|
||||
ExcludeEnd.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 10 }
|
||||
|
||||
ipeCfgDhcpMainServerLeaseAddrExcludeEnd OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Last IPv4 address within the range of lease exclude address.
|
||||
DHCP server don't lease IP address within lease exclude address.
|
||||
This IPv4 address is less equal than ipeCfgDhcpMainServerAddr-
|
||||
ExcludeBegin.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 11 }
|
||||
|
||||
ipeCfgDhcpMainServerOptGatewayAddrEnable OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
enabledInterface(1),
|
||||
enabledSpecify(2),
|
||||
disabled(3)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Switch that how to handle gateway IP address option on DHCP
|
||||
server.
|
||||
|
||||
enabledInterface : Use interface IP address. DHCP server
|
||||
provides gateway IP address configured on
|
||||
interface which is set to
|
||||
ipeCfgDhcpMainServerInterface.
|
||||
enabledSpecify : Use IP address which is set to
|
||||
ipeCfgDhcpMainServerOptGatewayAddr.
|
||||
disabled : DHCP server doesn't provide gateway IP
|
||||
address.
|
||||
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { enabledInterface }
|
||||
::= { ipeCfgDhcpMainServerEntry 12 }
|
||||
|
||||
ipeCfgDhcpMainServerOptGatewayAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Gateway IP address which is provided by DHCP server.
|
||||
|
||||
This object is effective only if DHCP server mode and
|
||||
ipeCfgDhcpMainServerOptGatewayAddrEnable is set to
|
||||
enabledSpecify."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 13 }
|
||||
|
||||
ipeCfgDhcpMainServerOptDnsServerPrimary OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Primary DNS server address which is provided by DHCP server.
|
||||
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 14 }
|
||||
|
||||
ipeCfgDhcpMainServerOptDnsServerSecondary OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Secoundary DNS server address which is provided by DHCP server.
|
||||
|
||||
In order to configure this object.
|
||||
ipeCfgDhcpMainServerOptDnsServerPrimary must be set in advance.
|
||||
|
||||
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainServerEntry 15 }
|
||||
|
||||
ipeCfgDhcpMainServerOptSpecifyEnable OBJECT-TYPE
|
||||
SYNTAX EnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Switch that whether DHCP server add user specified option to
|
||||
DHCP message.
|
||||
|
||||
enable : DHCP server add user specified option.
|
||||
disable : DHCP server doesn't add user specified otption.
|
||||
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { disable }
|
||||
::= { ipeCfgDhcpMainServerEntry 16 }
|
||||
|
||||
ipeCfgDhcpMainServerOptSpecifyId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..255)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Option id which DHCP server adds user specified option to DHCP
|
||||
message.
|
||||
This object is effective only if DHCP server mode and ipeCfgDhcp-
|
||||
MainServerOptSpecifyEnable is set to enabled."
|
||||
DEFVAL { 0 }
|
||||
::= { ipeCfgDhcpMainServerEntry 17 }
|
||||
|
||||
ipeCfgDhcpMainServerOptSpecifyType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
ipv4(1),
|
||||
ipv6(2),
|
||||
displayString(3),
|
||||
octetString(4)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Option type which DHCP server adds to DHCP message.
|
||||
This object is effective only if DHCP server mode and ipeCfgDhcp-
|
||||
MainServerOptSpecifyEnable is set to enabled."
|
||||
DEFVAL { ipv4 }
|
||||
::= { ipeCfgDhcpMainServerEntry 18 }
|
||||
|
||||
ipeCfgDhcpMainServerOptSpecifyValue OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(0..255))
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Option value which DHCP server adds to DHCP message.
|
||||
This object is decoded according to
|
||||
ipeCfgDhcpMainServerOptSpecifyType.
|
||||
|
||||
ipv4 : Syntax is IpAddress.
|
||||
ipv6 : Syntax is Ipv6Address.
|
||||
displayString : Syntax is DisplayString.
|
||||
octetString : Syntax is OCTET STRING.
|
||||
|
||||
This object is effective only if DHCP server mode and
|
||||
ipeCfgDhcpMainServerOptSpecifyEnable is set to enabled."
|
||||
::= { ipeCfgDhcpMainServerEntry 19 }
|
||||
|
||||
ipeCfgDhcpMainServerSecurityLevel OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), any(1), onlyRegistered(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Security level of this DHCP server.
|
||||
|
||||
any : DHCP server doesn't check MAC address except for
|
||||
rejected MAC address.
|
||||
onlyRegistered : DHCP server provides IP address only to
|
||||
registered MAC addresss.
|
||||
|
||||
Note : Rejected MAC address is examined even if
|
||||
ipeCfgDhcpMainServerSecurityLevel is set to any.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { any }
|
||||
::= { ipeCfgDhcpMainServerEntry 20 }
|
||||
|
||||
ipeCfgDhcpMainServerRegisteredMacId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..3)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The identifier of ipeCfgDhcpMainServerRegisteredMacEnrty.
|
||||
0 means no registered/rejected IP address exists.
|
||||
This object is effective only if DHCP server mode."
|
||||
DEFVAL { 0 }
|
||||
::= { ipeCfgDhcpMainServerEntry 21 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpeCfgDhcpMainRegisteredMacEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "IPv4 registered MAC address table for DHCP server."
|
||||
::= { ipeCfgDhcpGroup 3 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacEntry OBJECT-TYPE
|
||||
SYNTAX IpeCfgDhcpMainRegisteredMacEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Entry of IPv4 registered MAC address table."
|
||||
INDEX {
|
||||
ipeCfgDhcpMainRegisteredMacId,
|
||||
ipeCfgDhcpMainRegisteredMacNo
|
||||
}
|
||||
::= { ipeCfgDhcpMainRegisteredMacTable 1 }
|
||||
|
||||
IpeCfgDhcpMainRegisteredMacEntry ::= SEQUENCE {
|
||||
ipeCfgDhcpMainRegisteredMacId Integer32,
|
||||
ipeCfgDhcpMainRegisteredMacNo Integer32,
|
||||
ipeCfgDhcpMainRegisteredMacNEAddress IpAddress,
|
||||
ipeCfgDhcpMainRegisteredMacAddr MacAddress,
|
||||
ipeCfgDhcpMainRegisteredMacIpAddr IpAddress,
|
||||
ipeCfgDhcpMainRegisteredMacRowStatus RowStatus
|
||||
}
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacId OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..3)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Index of this table. This object means identifier of registered
|
||||
MAC entry."
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 1 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacNo OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..256)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Index of this table. This object means MAC address number whthin
|
||||
this registered MAC entry."
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 2 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Reserved object for northbound interface."
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 3 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacAddr OBJECT-TYPE
|
||||
SYNTAX MacAddress
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object means registered MAC address. When ipeCfgDhcpMain-
|
||||
ServerSecurityLevel is set to onlyRegisterd, DHCP server accept
|
||||
DHCP message sent from registered MAC address.
|
||||
|
||||
This object must be set when the row is created."
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 4 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IP address correspond to registered MAC address. If DHCP server
|
||||
receives DHCP DISCOVER from registered MAC address, it provide
|
||||
corresponding IP address set to this object.
|
||||
|
||||
When this object is set to 0.0.0.0, DHCP server provide any
|
||||
address whthin the lease address range.
|
||||
When this object is set to 255.255.255.255, DHCP server treats
|
||||
this MAC address as rejected MAC Address."
|
||||
DEFVAL { '00000000'h }
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 5 }
|
||||
|
||||
ipeCfgDhcpMainRegisteredMacRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"RowStatus of this entry. The system supports three values shonw
|
||||
below.
|
||||
|
||||
active(1) : change attribute in existing instance.
|
||||
createAndGo(4) : create the instance.
|
||||
destroy(6) : delete the instance."
|
||||
::= { ipeCfgDhcpMainRegisteredMacEntry 6 }
|
||||
|
||||
ipeStatusGroup OBJECT IDENTIFIER
|
||||
::= { system5 6 }
|
||||
|
||||
ipeStsDhcpGroup OBJECT IDENTIFIER
|
||||
::= { ipeStatusGroup 13 }
|
||||
|
||||
ipeStsDhcpMainLeaseTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpeStsDhcpMainLeaseEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Table of IPv4 DHCP server lease address."
|
||||
::= { ipeStsDhcpGroup 1 }
|
||||
|
||||
ipeStsDhcpMainLeaseEntry OBJECT-TYPE
|
||||
SYNTAX IpeStsDhcpMainLeaseEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Entry of IPv4 DHCP server lease address."
|
||||
INDEX {
|
||||
ipeStsDhcpMainLeaseServerIndex,
|
||||
ipeStsDhcpMainLeaseIpAddr
|
||||
}
|
||||
::= { ipeStsDhcpMainLeaseTable 1 }
|
||||
|
||||
IpeStsDhcpMainLeaseEntry ::= SEQUENCE {
|
||||
ipeStsDhcpMainLeaseServerIndex Integer32,
|
||||
ipeStsDhcpMainLeaseIpAddr IpAddress,
|
||||
ipeStsDhcpMainLeaseNEAddress IpAddress,
|
||||
ipeStsDhcpMainLeaseMacAddr MacAddress,
|
||||
ipeStsDhcpMainLeaseDateAndTime DateAndTime
|
||||
}
|
||||
|
||||
ipeStsDhcpMainLeaseServerIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..3)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { ipeStsDhcpMainLeaseEntry 1 }
|
||||
|
||||
ipeStsDhcpMainLeaseIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IPv4 address that DHCP server lease to the DHCP client.
|
||||
The maximum number of lease IP address depends on lease address
|
||||
range."
|
||||
::= { ipeStsDhcpMainLeaseEntry 2 }
|
||||
|
||||
ipeStsDhcpMainLeaseNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Reserved object for northbound interface."
|
||||
::= { ipeStsDhcpMainLeaseEntry 3 }
|
||||
|
||||
ipeStsDhcpMainLeaseMacAddr OBJECT-TYPE
|
||||
SYNTAX MacAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Mac address that DHCP server lease this IP address."
|
||||
::= { ipeStsDhcpMainLeaseEntry 4 }
|
||||
|
||||
ipeStsDhcpMainLeaseDateAndTime OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Date and time when DHCP server lease this IP address.
|
||||
|
||||
Note : This object should be updated when DHCP client rebinds
|
||||
lease address."
|
||||
::= { ipeStsDhcpMainLeaseEntry 5 }
|
||||
|
||||
ipeCommandGroup OBJECT IDENTIFIER
|
||||
::= { system5 8 }
|
||||
|
||||
ipeCmdDhcpGroup OBJECT IDENTIFIER
|
||||
::= { ipeCommandGroup 13 }
|
||||
|
||||
ipeCmdDhcpMainTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IpeCmdDhcpMainEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Maintenance table for DHCP server."
|
||||
::= { ipeCmdDhcpGroup 1 }
|
||||
|
||||
ipeCmdDhcpMainEntry OBJECT-TYPE
|
||||
SYNTAX IpeCmdDhcpMainEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Command entry for IPv4 DHCP server."
|
||||
INDEX { ipeCmdDhcpMainIndex, ipeCmdDhcpMainLeaseIpAddr }
|
||||
::= { ipeCmdDhcpMainTable 1 }
|
||||
|
||||
IpeCmdDhcpMainEntry ::= SEQUENCE {
|
||||
ipeCmdDhcpMainIndex Integer32,
|
||||
ipeCmdDhcpMainLeaseIpAddr IpAddress,
|
||||
ipeCmdDhcpMainNEAddress IpAddress,
|
||||
ipeCmdDhcpMainManualDelete INTEGER
|
||||
}
|
||||
|
||||
ipeCmdDhcpMainIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..3)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { ipeCmdDhcpMainEntry 1 }
|
||||
|
||||
ipeCmdDhcpMainLeaseIpAddr OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "The lease IP Address."
|
||||
::= { ipeCmdDhcpMainEntry 2 }
|
||||
|
||||
ipeCmdDhcpMainNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of table."
|
||||
::= { ipeCmdDhcpMainEntry 3 }
|
||||
|
||||
ipeCmdDhcpMainManualDelete OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), normal(1), manualDelete(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Operator manually deletes this lease address.
|
||||
|
||||
normal : can not set this value.
|
||||
manualDelete : Delete this lease address.
|
||||
If ipeCmdDhcpMainLeaseIpAddr is set to 0.0.0.0,
|
||||
DHCP server deletes all entry in corresponding
|
||||
ipeStsDhcpMainLeaseAddrEntry.
|
||||
|
||||
Note : When you read this object, the system alwasys return
|
||||
normal."
|
||||
::= { ipeCmdDhcpMainEntry 4 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
1348
mibs/nec/IPE-DOT3OAM-MIB
Normal file
1348
mibs/nec/IPE-DOT3OAM-MIB
Normal file
File diff suppressed because it is too large
Load Diff
1078
mibs/nec/IPE-ETH-RING-MIB
Normal file
1078
mibs/nec/IPE-ETH-RING-MIB
Normal file
File diff suppressed because it is too large
Load Diff
136
mibs/nec/IPE-FUNC-SUMMARY-MIB
Normal file
136
mibs/nec/IPE-FUNC-SUMMARY-MIB
Normal file
@ -0,0 +1,136 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:50 2016
|
||||
--
|
||||
|
||||
IPE-FUNC-SUMMARY-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
DateAndTime, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
summaryGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 1 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- summaryGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
maintSummaryGroup OBJECT IDENTIFIER
|
||||
::= { summaryGroup 2 }
|
||||
|
||||
maintFuncSummaryTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MaintFuncSummaryEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents maintenance functions which are performed under that
|
||||
agent. If the set request changing maintenance state to off is
|
||||
rejected, it is necessary to stop the function displayed as
|
||||
'executed' in this table."
|
||||
::= { maintSummaryGroup 2 }
|
||||
|
||||
maintFuncSummaryEntry OBJECT-TYPE
|
||||
SYNTAX MaintFuncSummaryEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { maintFuncSummaryCategory }
|
||||
::= { maintFuncSummaryTable 1 }
|
||||
|
||||
MaintFuncSummaryEntry ::= SEQUENCE {
|
||||
maintFuncSummaryCategory INTEGER,
|
||||
maintFuncSummaryNEAddress IpAddress,
|
||||
maintFuncSummary INTEGER,
|
||||
maintFuncSummaryLastUpdated DateAndTime
|
||||
}
|
||||
|
||||
maintFuncSummaryCategory OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
modemLb(1),
|
||||
modemMaint(2),
|
||||
modemSwgMaint(3),
|
||||
e1Lb1(4),
|
||||
e1Lb2(5),
|
||||
stm1Lb1(6),
|
||||
stm1Lb2(7),
|
||||
sncpControl(8),
|
||||
timingSourceControl(9),
|
||||
laserShutdownControl(10),
|
||||
fileUpdate(11),
|
||||
etherring(12),
|
||||
aps(13),
|
||||
dot3ah(14),
|
||||
modemL2Lb1(16),
|
||||
modemL2Lb2(17)
|
||||
}
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { maintFuncSummaryEntry 1 }
|
||||
|
||||
maintFuncSummaryNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { maintFuncSummaryEntry 2 }
|
||||
|
||||
maintFuncSummary OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), none(1), executed(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maintenance function state.
|
||||
'executed' state means the function is executing under that agent
|
||||
when the get-request is processed."
|
||||
::= { maintFuncSummaryEntry 3 }
|
||||
|
||||
maintFuncSummaryLastUpdated OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The time of the function entered its state. The initial value is
|
||||
the time the agent booted."
|
||||
::= { maintFuncSummaryEntry 4 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
747
mibs/nec/IPE-LAG-MIB
Normal file
747
mibs/nec/IPE-LAG-MIB
Normal file
@ -0,0 +1,747 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:51 2016
|
||||
--
|
||||
|
||||
IPE-LAG-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
InterfaceIndex, InterfaceIndexOrZero
|
||||
FROM IF-MIB
|
||||
Counter32, enterprises, Integer32, IpAddress, NOTIFICATION-TYPE,
|
||||
OBJECT-TYPE, Opaque
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, RowStatus, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IpeEnableDisableValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
SYNTAX INTEGER { invalid(0), disabled(1), enabled(2) }
|
||||
|
||||
SeverityValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Severity (CCITT Rec. X.733)"
|
||||
SYNTAX INTEGER {
|
||||
cleared(1),
|
||||
indetermine(2),
|
||||
critical(3),
|
||||
major(4),
|
||||
minor(5),
|
||||
warning(6)
|
||||
}
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
alarmStatusGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 3 }
|
||||
|
||||
provisioningGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 5 }
|
||||
|
||||
maintenanceGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 6 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- alarmStatusGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
asLinkAggrGroup OBJECT IDENTIFIER
|
||||
::= { alarmStatusGroup 38 }
|
||||
|
||||
asLinkAggrGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Alarm/Status for Link Aggregation Group. This table is created
|
||||
automatically when the Link Aggregation Group is defined."
|
||||
::= { asLinkAggrGroup 1 }
|
||||
|
||||
asLinkAggrGroupEntry OBJECT-TYPE
|
||||
SYNTAX AsLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asLinkAggrGroupIfIndex }
|
||||
::= { asLinkAggrGroupTable 1 }
|
||||
|
||||
AsLinkAggrGroupEntry ::= SEQUENCE {
|
||||
asLinkAggrGroupIfIndex InterfaceIndex,
|
||||
asLinkAggrGroupNEAddress IpAddress,
|
||||
asLinkAggrGroupLinkStatus SeverityValue,
|
||||
asLinkAggrGroupLLFStatus INTEGER,
|
||||
asLinkAggrGroupOperStatus INTEGER
|
||||
}
|
||||
|
||||
asLinkAggrGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asLinkAggrGroupEntry 1 }
|
||||
|
||||
asLinkAggrGroupNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asLinkAggrGroupEntry 2 }
|
||||
|
||||
asLinkAggrGroupLinkStatus OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Link Status for Link Aggregation Group. The all member ports
|
||||
become link down, this state becomes alarm state.
|
||||
But the lower layer is in alarm state, the link status becomes
|
||||
'normal' state because of alarm mask function."
|
||||
::= { asLinkAggrGroupEntry 3 }
|
||||
|
||||
asLinkAggrGroupLLFStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), normal(1), force(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status for link loss forwarding. 'force' means the interface
|
||||
is shutting down by the link loss forwarding."
|
||||
::= { asLinkAggrGroupEntry 4 }
|
||||
|
||||
asLinkAggrGroupOperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), linkDown(1), linkUp(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Link Status for Link Aggregation Group. This object keeps
|
||||
linkDown state, when the lower layer is in alarm state."
|
||||
::= { asLinkAggrGroupEntry 5 }
|
||||
|
||||
asLinkAggrPortTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsLinkAggrPortEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Link Aggregation Member Port Status. This table is created
|
||||
automatically when a link aggregation group is defined.
|
||||
This table is created per each member port per link aggregation
|
||||
group."
|
||||
::= { asLinkAggrGroup 2 }
|
||||
|
||||
asLinkAggrPortEntry OBJECT-TYPE
|
||||
SYNTAX AsLinkAggrPortEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asLinkAggrPortGroupIfIndex, asLinkAggrPortIfIndex }
|
||||
::= { asLinkAggrPortTable 1 }
|
||||
|
||||
AsLinkAggrPortEntry ::= SEQUENCE {
|
||||
asLinkAggrPortGroupIfIndex InterfaceIndex,
|
||||
asLinkAggrPortIfIndex InterfaceIndex,
|
||||
asLinkAggrPortNEAddress IpAddress,
|
||||
asLinkAggrPortStatus INTEGER,
|
||||
asLinkAggrPortActorLacpStatus BITS,
|
||||
asLinkAggrPortPartnerLacpStatus BITS,
|
||||
asLinkAggrPortLoopDetect INTEGER
|
||||
}
|
||||
|
||||
asLinkAggrPortGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asLinkAggrPortEntry 1 }
|
||||
|
||||
asLinkAggrPortIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asLinkAggrPortEntry 2 }
|
||||
|
||||
asLinkAggrPortNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asLinkAggrPortEntry 3 }
|
||||
|
||||
asLinkAggrPortStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), active(1), standby(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The port role of the member port.
|
||||
'active' means the port forwards/receives the packets on the
|
||||
interface."
|
||||
::= { asLinkAggrPortEntry 4 }
|
||||
|
||||
asLinkAggrPortActorLacpStatus OBJECT-TYPE
|
||||
SYNTAX BITS {
|
||||
lacpActivity(0),
|
||||
lacpTimeout(1),
|
||||
aggregation(2),
|
||||
synchronization(3),
|
||||
collecting(4),
|
||||
distributing(5),
|
||||
defaulted(6),
|
||||
expired(7)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A string of 8 bits, corresponding to the current operational
|
||||
values of Actor_State as transmitted by the Actor in LACPDUs."
|
||||
::= { asLinkAggrPortEntry 5 }
|
||||
|
||||
asLinkAggrPortPartnerLacpStatus OBJECT-TYPE
|
||||
SYNTAX BITS {
|
||||
lacpActivity(0),
|
||||
lacpTimeout(1),
|
||||
aggregation(2),
|
||||
synchronization(3),
|
||||
collecting(4),
|
||||
distributing(5),
|
||||
defaulted(6),
|
||||
expired(7)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A string of 8 bits, corresponding to the current values of
|
||||
Actor_State in the most recently received LACPDU transmitted by
|
||||
the protocol Partner."
|
||||
::= { asLinkAggrPortEntry 6 }
|
||||
|
||||
asLinkAggrPortLoopDetect OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), none(1), detected(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"LACP Control frames loop detect status for that port. This
|
||||
status will be cleared when the condition is not detected for a
|
||||
fixed time."
|
||||
::= { asLinkAggrPortEntry 7 }
|
||||
|
||||
asLinkAggrPortStatsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsLinkAggrPortStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Statistics."
|
||||
::= { asLinkAggrGroup 3 }
|
||||
|
||||
asLinkAggrPortStatsEntry OBJECT-TYPE
|
||||
SYNTAX AsLinkAggrPortStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asLinkAggrPortStatsIfIndex }
|
||||
::= { asLinkAggrPortStatsTable 1 }
|
||||
|
||||
AsLinkAggrPortStatsEntry ::= SEQUENCE {
|
||||
asLinkAggrPortStatsIfIndex InterfaceIndex,
|
||||
asLinkAggrPortStatsNEAddress IpAddress,
|
||||
asLinkAggrPortStatsLACPDUsRx Counter32,
|
||||
asLinkAggrPortStatsLACPDUsTx Counter32,
|
||||
asLinkAggrPortStatsMarkerPDUsRx Counter32,
|
||||
asLinkAggrPortStatsMarkerRespPDUsRx Counter32,
|
||||
asLinkAggrPortStatsMarkerPDUsTx Counter32,
|
||||
asLinkAggrPortStatsMarkerRespPDUsTx Counter32
|
||||
}
|
||||
|
||||
asLinkAggrPortStatsIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asLinkAggrPortStatsEntry 1 }
|
||||
|
||||
asLinkAggrPortStatsNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asLinkAggrPortStatsEntry 2 }
|
||||
|
||||
asLinkAggrPortStatsLACPDUsRx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of valid LACPDUs received on this Aggregation Port."
|
||||
::= { asLinkAggrPortStatsEntry 3 }
|
||||
|
||||
asLinkAggrPortStatsLACPDUsTx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of LACPDUs transmitted on this
|
||||
Aggregation Port."
|
||||
::= { asLinkAggrPortStatsEntry 4 }
|
||||
|
||||
asLinkAggrPortStatsMarkerPDUsRx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of valid Marker PDUs received on this Aggregation
|
||||
Port."
|
||||
::= { asLinkAggrPortStatsEntry 5 }
|
||||
|
||||
asLinkAggrPortStatsMarkerRespPDUsRx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of valid Marker Response PDUs received on this
|
||||
Aggregation Port."
|
||||
::= { asLinkAggrPortStatsEntry 6 }
|
||||
|
||||
asLinkAggrPortStatsMarkerPDUsTx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of Marker PDUs transmitted on this Aggregation Port."
|
||||
::= { asLinkAggrPortStatsEntry 7 }
|
||||
|
||||
asLinkAggrPortStatsMarkerRespPDUsTx OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of Marker Response PDUs transmitted on this
|
||||
Aggregation Port."
|
||||
::= { asLinkAggrPortStatsEntry 8 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- provisioningGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
provLinkAggrGroup OBJECT IDENTIFIER
|
||||
::= { provisioningGroup 38 }
|
||||
|
||||
provLinkAggrGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Link Aggregation Table.
|
||||
This table controls creation and deletion of link aggregation
|
||||
group."
|
||||
::= { provLinkAggrGroup 1 }
|
||||
|
||||
provLinkAggrGroupEntry OBJECT-TYPE
|
||||
SYNTAX ProvLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provLinkAggrGroupIfIndex }
|
||||
::= { provLinkAggrGroupTable 1 }
|
||||
|
||||
ProvLinkAggrGroupEntry ::= SEQUENCE {
|
||||
provLinkAggrGroupIfIndex InterfaceIndex,
|
||||
provLinkAggrGroupNEAddress IpAddress,
|
||||
provLinkAggrGroupMode INTEGER,
|
||||
provLinkAggrGrLacpTxInterval INTEGER,
|
||||
provLinkAggrGroupRevertive IpeEnableDisableValue,
|
||||
provLinkAggrGroupTxType INTEGER,
|
||||
provLinkAggrGroupName DisplayString,
|
||||
provLinkAggrGroupRowStatus RowStatus,
|
||||
provLinkAggrGroupMemberPort1 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort2 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort3 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort4 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort5 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort6 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort7 InterfaceIndexOrZero,
|
||||
provLinkAggrGroupMemberPort8 InterfaceIndexOrZero
|
||||
}
|
||||
|
||||
provLinkAggrGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrGroupEntry 1 }
|
||||
|
||||
provLinkAggrGroupNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provLinkAggrGroupEntry 2 }
|
||||
|
||||
provLinkAggrGroupMode OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), active(1), passive(2), local(3) }
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Link Aggregation Group Mode configuration.
|
||||
When the 'active' is configured, LACPDUs are always sent along
|
||||
with configured links. On the other hand, LACPDUs are sent only
|
||||
when receiving LACPDUs from other switch. In the 'local' mode,
|
||||
the port status such as active or standby is statically
|
||||
configured."
|
||||
::= { provLinkAggrGroupEntry 3 }
|
||||
|
||||
provLinkAggrGrLacpTxInterval OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), short(1), long(2) }
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The sending interval of LACPDUs.'short' mode sends LACPDUs in
|
||||
every 1 second. 'long' mode sends LACPDUs in every 30 seconds."
|
||||
DEFVAL { short }
|
||||
::= { provLinkAggrGroupEntry 4 }
|
||||
|
||||
provLinkAggrGroupRevertive OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Indicates the revertive method(When Static mode is enabled)"
|
||||
DEFVAL { disabled }
|
||||
::= { provLinkAggrGroupEntry 5 }
|
||||
|
||||
provLinkAggrGroupTxType OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), macVid(1), mplsLabel(2), ipVid(3) }
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A rule of frame transmission among the multiple member ports."
|
||||
DEFVAL { macVid }
|
||||
::= { provLinkAggrGroupEntry 6 }
|
||||
|
||||
provLinkAggrGroupName OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Indicates the name of Link Aggregation Group "
|
||||
DEFVAL { "" }
|
||||
::= { provLinkAggrGroupEntry 7 }
|
||||
|
||||
provLinkAggrGroupRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object is used to create and remove the Link Aggregation
|
||||
Group. When creating new Link Aggregation Group, it is necessary
|
||||
to configure at least one member port by using
|
||||
provLinkAggrGroupMemberPort."
|
||||
::= { provLinkAggrGroupEntry 8 }
|
||||
|
||||
provLinkAggrGroupMemberPort1 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port1"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 9 }
|
||||
|
||||
provLinkAggrGroupMemberPort2 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port2"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 10 }
|
||||
|
||||
provLinkAggrGroupMemberPort3 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port3"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 11 }
|
||||
|
||||
provLinkAggrGroupMemberPort4 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port4"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 12 }
|
||||
|
||||
provLinkAggrGroupMemberPort5 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port5"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 13 }
|
||||
|
||||
provLinkAggrGroupMemberPort6 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port6"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 14 }
|
||||
|
||||
provLinkAggrGroupMemberPort7 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port7"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 15 }
|
||||
|
||||
provLinkAggrGroupMemberPort8 OBJECT-TYPE
|
||||
SYNTAX InterfaceIndexOrZero
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Link Aggregation Group member Port8"
|
||||
DEFVAL { 0 }
|
||||
::= { provLinkAggrGroupEntry 16 }
|
||||
|
||||
provLinkAggrPortTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvLinkAggrPortEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table configures the link aggregation member port. This
|
||||
table is created automatically by setting interface index to
|
||||
provLinkAggrGroupMemberPort."
|
||||
::= { provLinkAggrGroup 2 }
|
||||
|
||||
provLinkAggrPortEntry OBJECT-TYPE
|
||||
SYNTAX ProvLinkAggrPortEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provLinkAggrPortGroupIfIndex, provLinkAggrPortIfIndex }
|
||||
::= { provLinkAggrPortTable 1 }
|
||||
|
||||
ProvLinkAggrPortEntry ::= SEQUENCE {
|
||||
provLinkAggrPortGroupIfIndex InterfaceIndex,
|
||||
provLinkAggrPortIfIndex InterfaceIndex,
|
||||
provLinkAggrPortNEAddress IpAddress,
|
||||
provLinkAggrPortRole INTEGER
|
||||
}
|
||||
|
||||
provLinkAggrPortGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrPortEntry 1 }
|
||||
|
||||
provLinkAggrPortIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrPortEntry 2 }
|
||||
|
||||
provLinkAggrPortNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provLinkAggrPortEntry 3 }
|
||||
|
||||
provLinkAggrPortRole OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), active(1), standby(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Port role configuration. When the Link Aggregation Group
|
||||
operates in static mode, port status is decided by this object.
|
||||
In other operating mode, the configuration is used in negotiation
|
||||
with peer switch."
|
||||
::= { provLinkAggrPortEntry 4 }
|
||||
|
||||
provLinkAggrPortExtTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvLinkAggrPortExtEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table configures the Port priority and is used for internal
|
||||
use only."
|
||||
::= { provLinkAggrGroup 3 }
|
||||
|
||||
provLinkAggrPortExtEntry OBJECT-TYPE
|
||||
SYNTAX ProvLinkAggrPortExtEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX {
|
||||
provLinkAggrPortExtGroupIfIndex,
|
||||
provLinkAggrPortExtIfIndex
|
||||
}
|
||||
::= { provLinkAggrPortExtTable 1 }
|
||||
|
||||
ProvLinkAggrPortExtEntry ::= SEQUENCE {
|
||||
provLinkAggrPortExtGroupIfIndex InterfaceIndex,
|
||||
provLinkAggrPortExtIfIndex InterfaceIndex,
|
||||
provLinkAggrPortExtNEAddress IpAddress,
|
||||
provLinkAggrPortExtPriority Integer32
|
||||
}
|
||||
|
||||
provLinkAggrPortExtGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrPortExtEntry 1 }
|
||||
|
||||
provLinkAggrPortExtIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrPortExtEntry 2 }
|
||||
|
||||
provLinkAggrPortExtNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provLinkAggrPortExtEntry 3 }
|
||||
|
||||
provLinkAggrPortExtPriority OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..65535)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Port Priority Setting. This object is defined for internal use
|
||||
only. The port priority is configured automatically by its port
|
||||
status."
|
||||
DEFVAL { 128 }
|
||||
::= { provLinkAggrPortExtEntry 4 }
|
||||
|
||||
provLinkAggrEquipmentTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvLinkAggrEquipmentEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table configures system parameter for link aggregation
|
||||
function. The table is created when the agent boots up."
|
||||
::= { provLinkAggrGroup 4 }
|
||||
|
||||
provLinkAggrEquipmentEntry OBJECT-TYPE
|
||||
SYNTAX ProvLinkAggrEquipmentEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provLinkAggrEquipmentIndex }
|
||||
::= { provLinkAggrEquipmentTable 1 }
|
||||
|
||||
ProvLinkAggrEquipmentEntry ::= SEQUENCE {
|
||||
provLinkAggrEquipmentIndex Integer32,
|
||||
provLinkAggrEquipmentNEAddress IpAddress,
|
||||
provLinkAggrEquipmentSysPriority Integer32
|
||||
}
|
||||
|
||||
provLinkAggrEquipmentIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..1)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provLinkAggrEquipmentEntry 1 }
|
||||
|
||||
provLinkAggrEquipmentNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provLinkAggrEquipmentEntry 2 }
|
||||
|
||||
provLinkAggrEquipmentSysPriority OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..65535)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Indicates system Priority"
|
||||
DEFVAL { 32768 }
|
||||
::= { provLinkAggrEquipmentEntry 3 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- maintenanceGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
maintLinkAggrGroup OBJECT IDENTIFIER
|
||||
::= { maintenanceGroup 38 }
|
||||
|
||||
maintLinkAggrGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MaintLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table provides revert function per link aggregation group.
|
||||
The function performs re-initialize the lacp port status
|
||||
machine."
|
||||
::= { maintLinkAggrGroup 1 }
|
||||
|
||||
maintLinkAggrGroupEntry OBJECT-TYPE
|
||||
SYNTAX MaintLinkAggrGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { maintLinkAggrGroupIfIndex }
|
||||
::= { maintLinkAggrGroupTable 1 }
|
||||
|
||||
MaintLinkAggrGroupEntry ::= SEQUENCE {
|
||||
maintLinkAggrGroupIfIndex InterfaceIndex,
|
||||
maintLinkAggrGroupNEAddress IpAddress,
|
||||
maintLinkAggrGroupRevert INTEGER
|
||||
}
|
||||
|
||||
maintLinkAggrGroupIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { maintLinkAggrGroupEntry 1 }
|
||||
|
||||
maintLinkAggrGroupNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { maintLinkAggrGroupEntry 2 }
|
||||
|
||||
maintLinkAggrGroupRevert OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), none(1), revert(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Maintenance operation for the revertive control"
|
||||
::= { maintLinkAggrGroupEntry 3 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
440
mibs/nec/IPE-MSE-MIB
Normal file
440
mibs/nec/IPE-MSE-MIB
Normal file
@ -0,0 +1,440 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:46 2016
|
||||
--
|
||||
|
||||
IPE-MSE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
InterfaceIndex
|
||||
FROM IF-MIB
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IpeEnableDisableValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
SYNTAX INTEGER { invalid(0), disabled(1), enabled(2) }
|
||||
|
||||
SeverityValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Severity (CCITT Rec. X.733)"
|
||||
SYNTAX INTEGER {
|
||||
cleared(1),
|
||||
indetermine(2),
|
||||
critical(3),
|
||||
major(4),
|
||||
minor(5),
|
||||
warning(6)
|
||||
}
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
alarmStatusGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 3 }
|
||||
|
||||
provisioningGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 5 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- alarmStatusGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
asMseGroup OBJECT IDENTIFIER
|
||||
::= { alarmStatusGroup 40 }
|
||||
|
||||
asMseCardTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsMseCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "This table represents the alarm status for mse card."
|
||||
::= { asMseGroup 1 }
|
||||
|
||||
asMseCardEntry OBJECT-TYPE
|
||||
SYNTAX AsMseCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asMseCardIndex }
|
||||
::= { asMseCardTable 1 }
|
||||
|
||||
AsMseCardEntry ::= SEQUENCE {
|
||||
asMseCardIndex Integer32,
|
||||
asMseCardNEAddress IpAddress,
|
||||
asMseCardModuleFail SeverityValue,
|
||||
asMseCardComFailAlarm SeverityValue,
|
||||
asMseCardUnequipped SeverityValue,
|
||||
asMseCardTypeMismatch SeverityValue,
|
||||
asMseCardBusErrorTx SeverityValue,
|
||||
asMseCardBusErrorRx SeverityValue,
|
||||
asMseCardClkFail SeverityValue
|
||||
}
|
||||
|
||||
asMseCardIndex OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asMseCardEntry 1 }
|
||||
|
||||
asMseCardNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asMseCardEntry 2 }
|
||||
|
||||
asMseCardModuleFail OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE Module Alarm"
|
||||
::= { asMseCardEntry 3 }
|
||||
|
||||
asMseCardComFailAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE Communication FAIL Alarm."
|
||||
::= { asMseCardEntry 4 }
|
||||
|
||||
asMseCardUnequipped OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"MSE Unequipped Alarm. The alarm shows status that the
|
||||
provisioned card is not installed."
|
||||
::= { asMseCardEntry 5 }
|
||||
|
||||
asMseCardTypeMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"MSE Type Mismatch Alarm. The alarm shows status that the card
|
||||
which is different from provisioned is installed."
|
||||
::= { asMseCardEntry 6 }
|
||||
|
||||
asMseCardBusErrorTx OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE Tx Bus Error Alarm."
|
||||
::= { asMseCardEntry 7 }
|
||||
|
||||
asMseCardBusErrorRx OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE Rx Bus Error Alarm"
|
||||
::= { asMseCardEntry 8 }
|
||||
|
||||
asMseCardClkFail OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION "obsoleted"
|
||||
::= { asMseCardEntry 9 }
|
||||
|
||||
asMseLineTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsMseLineEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 Channel Alarm Status table."
|
||||
::= { asMseGroup 2 }
|
||||
|
||||
asMseLineEntry OBJECT-TYPE
|
||||
SYNTAX AsMseLineEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asMseLineIfIndex }
|
||||
::= { asMseLineTable 1 }
|
||||
|
||||
AsMseLineEntry ::= SEQUENCE {
|
||||
asMseLineIfIndex InterfaceIndex,
|
||||
asMseLineNEAddress IpAddress,
|
||||
asMseLineBfrUnderrun SeverityValue,
|
||||
asMseLineAdaptiveClkStatus INTEGER
|
||||
}
|
||||
|
||||
asMseLineIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asMseLineEntry 1 }
|
||||
|
||||
asMseLineNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asMseLineEntry 2 }
|
||||
|
||||
asMseLineBfrUnderrun OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 Channel TDM Buffer Underrun Alarm."
|
||||
::= { asMseLineEntry 5 }
|
||||
|
||||
asMseLineAdaptiveClkStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
holdover(1),
|
||||
acquiring(2),
|
||||
acquired(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 Channel Adaptive Clock Status."
|
||||
::= { asMseLineEntry 6 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- provisioningGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
provMseGroup OBJECT IDENTIFIER
|
||||
::= { provisioningGroup 40 }
|
||||
|
||||
provMseLineModeTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvMseLineModeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { provMseGroup 1 }
|
||||
|
||||
provMseLineModeEntry OBJECT-TYPE
|
||||
SYNTAX ProvMseLineModeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provMseLineModeIfIndex }
|
||||
::= { provMseLineModeTable 1 }
|
||||
|
||||
ProvMseLineModeEntry ::= SEQUENCE {
|
||||
provMseLineModeIfIndex InterfaceIndex,
|
||||
provMseLineModeNEAddress IpAddress,
|
||||
provMseLineModeType INTEGER
|
||||
}
|
||||
|
||||
provMseLineModeIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provMseLineModeEntry 1 }
|
||||
|
||||
provMseLineModeNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provMseLineModeEntry 2 }
|
||||
|
||||
provMseLineModeType OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), none(1), satop(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Configure MSE E1 channel PWE mode."
|
||||
DEFVAL { none }
|
||||
::= { provMseLineModeEntry 3 }
|
||||
|
||||
provMseClockModeTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvMseClockModeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 channel Clock Mode Table."
|
||||
::= { provMseGroup 2 }
|
||||
|
||||
provMseClockModeEntry OBJECT-TYPE
|
||||
SYNTAX ProvMseClockModeEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provMseClockModeIfIndex }
|
||||
::= { provMseClockModeTable 1 }
|
||||
|
||||
ProvMseClockModeEntry ::= SEQUENCE {
|
||||
provMseClockModeIfIndex InterfaceIndex,
|
||||
provMseClockModeNEAddress IpAddress,
|
||||
provMseClockModeType INTEGER,
|
||||
provMseClockACRLineSelect Integer32
|
||||
}
|
||||
|
||||
provMseClockModeIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provMseClockModeEntry 1 }
|
||||
|
||||
provMseClockModeNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provMseClockModeEntry 2 }
|
||||
|
||||
provMseClockModeType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
syncToSystem(1),
|
||||
syncToPw(2),
|
||||
syncToLine(3)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Configure MSE E1 channel clock mode. When 'syncToSystem' is
|
||||
configured, the line clock is synchronized to NE Clock. When
|
||||
'syncToLine' is configured, the line clock is synchronized to
|
||||
each E1 channel. When 'syncToPw' is configured, the line clock is
|
||||
synchronized to Adaptive Clock which is extracted from PWE
|
||||
packet. And if the line is referenced from other line (configured
|
||||
by 'provMseClockACRLineSelect'), the system rejects the request
|
||||
to change the 'provMseClockModeType' to the other mode."
|
||||
DEFVAL { syncToPw }
|
||||
::= { provMseClockModeEntry 3 }
|
||||
|
||||
provMseClockACRLineSelect OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..16)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Assign Channel"
|
||||
::= { provMseClockModeEntry 4 }
|
||||
|
||||
provMseClockModeExtTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvMseClockModeExtEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { provMseGroup 3 }
|
||||
|
||||
provMseClockModeExtEntry OBJECT-TYPE
|
||||
SYNTAX ProvMseClockModeExtEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provMseClockModeExtIfIndex }
|
||||
::= { provMseClockModeExtTable 1 }
|
||||
|
||||
ProvMseClockModeExtEntry ::= SEQUENCE {
|
||||
provMseClockModeExtIfIndex InterfaceIndex,
|
||||
provMseClockModeExtNEAddress IpAddress,
|
||||
provMseClockModeReply2Master IpeEnableDisableValue,
|
||||
provMseClockSupplyMode IpeEnableDisableValue
|
||||
}
|
||||
|
||||
provMseClockModeExtIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provMseClockModeExtEntry 1 }
|
||||
|
||||
provMseClockModeExtNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provMseClockModeExtEntry 2 }
|
||||
|
||||
provMseClockModeReply2Master OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Output PW Packet to Master"
|
||||
DEFVAL { enabled }
|
||||
::= { provMseClockModeExtEntry 3 }
|
||||
|
||||
provMseClockSupplyMode OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Clock Supply Mode"
|
||||
DEFVAL { disabled }
|
||||
::= { provMseClockModeExtEntry 4 }
|
||||
|
||||
provMseClockSelectTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvMseClockSelectEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "MSE Clock Select Setting Table."
|
||||
::= { provMseGroup 4 }
|
||||
|
||||
provMseClockSelectEntry OBJECT-TYPE
|
||||
SYNTAX ProvMseClockSelectEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provMseClockSelectCardId }
|
||||
::= { provMseClockSelectTable 1 }
|
||||
|
||||
ProvMseClockSelectEntry ::= SEQUENCE {
|
||||
provMseClockSelectCardId Integer32,
|
||||
provMseClockSelectNEAddress IpAddress,
|
||||
provMseClockSelectLineNum Integer32
|
||||
}
|
||||
|
||||
provMseClockSelectCardId OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provMseClockSelectEntry 1 }
|
||||
|
||||
provMseClockSelectNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provMseClockSelectEntry 2 }
|
||||
|
||||
provMseClockSelectLineNum OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..16)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 Clock Port"
|
||||
DEFVAL { 1 }
|
||||
::= { provMseClockSelectEntry 3 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
1052
mibs/nec/IPE-MSTP-MIB
Normal file
1052
mibs/nec/IPE-MSTP-MIB
Normal file
File diff suppressed because it is too large
Load Diff
340
mibs/nec/IPE-PW-MIB
Normal file
340
mibs/nec/IPE-PW-MIB
Normal file
@ -0,0 +1,340 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:48 2016
|
||||
--
|
||||
|
||||
IPE-PW-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
InterfaceIndex
|
||||
FROM IF-MIB
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, MacAddress, RowStatus, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IpeEnableDisableValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
SYNTAX INTEGER { invalid(0), disabled(1), enabled(2) }
|
||||
|
||||
IpePwIndex ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "d"
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
SYNTAX Integer32 (1..256)
|
||||
|
||||
IpeVlanIndex ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "d"
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"VLAN ID.
|
||||
Value '4095' is reserved, and cannot set to the system."
|
||||
SYNTAX Integer32 (1..4094)
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
provisioningGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 5 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- provisioningGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
provPwGroup OBJECT IDENTIFIER
|
||||
::= { provisioningGroup 42 }
|
||||
|
||||
provPwTdmLineTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvPwTdmLineEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { provPwGroup 4 }
|
||||
|
||||
provPwTdmLineEntry OBJECT-TYPE
|
||||
SYNTAX ProvPwTdmLineEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provPwTdmLineIfIndex }
|
||||
::= { provPwTdmLineTable 1 }
|
||||
|
||||
ProvPwTdmLineEntry ::= SEQUENCE {
|
||||
provPwTdmLineIfIndex InterfaceIndex,
|
||||
provPwTdmLineNEAddress IpAddress,
|
||||
provPwTdmLineFrameMode INTEGER,
|
||||
provPwTdmLineCasMode IpeEnableDisableValue,
|
||||
provPwTdmLineCrc4Mode IpeEnableDisableValue,
|
||||
provPwTdmLineJtrBfrDepth INTEGER,
|
||||
provPwTdmLineDstMacCheck IpeEnableDisableValue
|
||||
}
|
||||
|
||||
provPwTdmLineIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provPwTdmLineEntry 1 }
|
||||
|
||||
provPwTdmLineNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provPwTdmLineEntry 2 }
|
||||
|
||||
provPwTdmLineFrameMode OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), unframed(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Frame Mode"
|
||||
DEFVAL { unframed }
|
||||
::= { provPwTdmLineEntry 3 }
|
||||
|
||||
provPwTdmLineCasMode OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "PCM Codec (CAS)"
|
||||
DEFVAL { disabled }
|
||||
::= { provPwTdmLineEntry 4 }
|
||||
|
||||
provPwTdmLineCrc4Mode OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "PCM Codec (CRC)"
|
||||
DEFVAL { disabled }
|
||||
::= { provPwTdmLineEntry 5 }
|
||||
|
||||
provPwTdmLineJtrBfrDepth OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
invalid(0),
|
||||
jtr2ms(1),
|
||||
jtr4ms(2),
|
||||
jtr8ms(3),
|
||||
jtr16ms(4),
|
||||
jtr32ms(5),
|
||||
jtr64ms(6),
|
||||
jtr128ms(7)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Jitter Buffer"
|
||||
DEFVAL { jtr8ms }
|
||||
::= { provPwTdmLineEntry 6 }
|
||||
|
||||
provPwTdmLineDstMacCheck OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Destination MAC check"
|
||||
DEFVAL { enabled }
|
||||
::= { provPwTdmLineEntry 7 }
|
||||
|
||||
provPwTdmTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvPwTdmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { provPwGroup 5 }
|
||||
|
||||
provPwTdmEntry OBJECT-TYPE
|
||||
SYNTAX ProvPwTdmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provPwTdmPwIndex }
|
||||
::= { provPwTdmTable 1 }
|
||||
|
||||
ProvPwTdmEntry ::= SEQUENCE {
|
||||
provPwTdmPwIndex IpePwIndex,
|
||||
provPwTdmNEAddress IpAddress,
|
||||
provPwTdmIfIndex InterfaceIndex,
|
||||
provPwTdmRtpHdrUsed IpeEnableDisableValue,
|
||||
provPwTdmFrameLength Integer32,
|
||||
provPwTdmEncapMode INTEGER,
|
||||
provPwTdmRowStatus RowStatus,
|
||||
provPwTdmAdaptiveClkSource IpeEnableDisableValue
|
||||
}
|
||||
|
||||
provPwTdmPwIndex OBJECT-TYPE
|
||||
SYNTAX IpePwIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provPwTdmEntry 1 }
|
||||
|
||||
provPwTdmNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provPwTdmEntry 2 }
|
||||
|
||||
provPwTdmIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "MSE E1 Channel"
|
||||
::= { provPwTdmEntry 3 }
|
||||
|
||||
provPwTdmRtpHdrUsed OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "RTP Header"
|
||||
DEFVAL { disabled }
|
||||
::= { provPwTdmEntry 4 }
|
||||
|
||||
provPwTdmFrameLength OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..8)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Capsule E1 Frame Size"
|
||||
DEFVAL { 8 }
|
||||
::= { provPwTdmEntry 5 }
|
||||
|
||||
provPwTdmEncapMode OBJECT-TYPE
|
||||
SYNTAX INTEGER { invalid(0), tdmOverEther(1) }
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "PWE Mode"
|
||||
DEFVAL { tdmOverEther }
|
||||
::= { provPwTdmEntry 6 }
|
||||
|
||||
provPwTdmRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "RowStatus of this table."
|
||||
::= { provPwTdmEntry 7 }
|
||||
|
||||
provPwTdmAdaptiveClkSource OBJECT-TYPE
|
||||
SYNTAX IpeEnableDisableValue
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Adaptive Clock"
|
||||
DEFVAL { disabled }
|
||||
::= { provPwTdmEntry 8 }
|
||||
|
||||
provPwOverEthTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProvPwOverEthEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "PW over ETHER setting Table."
|
||||
::= { provPwGroup 11 }
|
||||
|
||||
provPwOverEthEntry OBJECT-TYPE
|
||||
SYNTAX ProvPwOverEthEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { provPwOverEthPwIndex }
|
||||
::= { provPwOverEthTable 1 }
|
||||
|
||||
ProvPwOverEthEntry ::= SEQUENCE {
|
||||
provPwOverEthPwIndex IpePwIndex,
|
||||
provPwOverEthNEAddress IpAddress,
|
||||
provPwOverEthVlanId IpeVlanIndex,
|
||||
provPwOverEthTpid OCTET STRING,
|
||||
provPwOverEthCosValue Integer32,
|
||||
provPwOverEthEcid Integer32,
|
||||
provPwOverEthName DisplayString,
|
||||
provPwOverEthDstMacAddress MacAddress
|
||||
}
|
||||
|
||||
provPwOverEthPwIndex OBJECT-TYPE
|
||||
SYNTAX IpePwIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { provPwOverEthEntry 1 }
|
||||
|
||||
provPwOverEthNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { provPwOverEthEntry 2 }
|
||||
|
||||
provPwOverEthVlanId OBJECT-TYPE
|
||||
SYNTAX IpeVlanIndex
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "VLAN ID"
|
||||
::= { provPwOverEthEntry 3 }
|
||||
|
||||
provPwOverEthTpid OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(2..2))
|
||||
MAX-ACCESS read-create
|
||||
STATUS obsolete
|
||||
DESCRIPTION "TPID"
|
||||
DEFVAL { 'ff00'h }
|
||||
::= { provPwOverEthEntry 4 }
|
||||
|
||||
provPwOverEthCosValue OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..7)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "CoS Value"
|
||||
DEFVAL { 5 }
|
||||
::= { provPwOverEthEntry 5 }
|
||||
|
||||
provPwOverEthEcid OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..1048575)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "ECID"
|
||||
::= { provPwOverEthEntry 6 }
|
||||
|
||||
provPwOverEthName OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE(0..32))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "PWE Service Name"
|
||||
DEFVAL { "" }
|
||||
::= { provPwOverEthEntry 7 }
|
||||
|
||||
provPwOverEthDstMacAddress OBJECT-TYPE
|
||||
SYNTAX MacAddress
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION "Destination MAC Address"
|
||||
::= { provPwOverEthEntry 8 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
5939
mibs/nec/IPE-SYSTEM-MIB
Normal file
5939
mibs/nec/IPE-SYSTEM-MIB
Normal file
File diff suppressed because it is too large
Load Diff
151
mibs/nec/IPE-TERM-MIB
Normal file
151
mibs/nec/IPE-TERM-MIB
Normal file
@ -0,0 +1,151 @@
|
||||
--
|
||||
-- ASN.1 MIB Definitions
|
||||
-- Output Date: Tue Jul 12 15:00:44 2016
|
||||
--
|
||||
|
||||
IPE-TERM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
-----------------------------------------------
|
||||
-- IMPORTS Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
IMPORTS
|
||||
enterprises, Integer32, IpAddress, NOTIFICATION-TYPE, OBJECT-TYPE,
|
||||
Opaque
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
-----------------------------------------------
|
||||
-- Textual Convention Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
OffOnValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Off/On Type"
|
||||
SYNTAX INTEGER { invalid(0), off(1), on(2) }
|
||||
|
||||
SeverityValue ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Severity (CCITT Rec. X.733)"
|
||||
SYNTAX INTEGER {
|
||||
cleared(1),
|
||||
indetermine(2),
|
||||
critical(3),
|
||||
major(4),
|
||||
minor(5),
|
||||
warning(6)
|
||||
}
|
||||
|
||||
-----------------------------------------------
|
||||
-- Begin User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
nec OBJECT IDENTIFIER
|
||||
::= { enterprises 119 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER
|
||||
::= { nec 2 }
|
||||
|
||||
necProductDepend OBJECT IDENTIFIER
|
||||
::= { nec-mib 3 }
|
||||
|
||||
radioEquipment OBJECT IDENTIFIER
|
||||
::= { necProductDepend 69 }
|
||||
|
||||
pasoNeoIpe-common OBJECT IDENTIFIER
|
||||
::= { radioEquipment 501 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- IPE COMMON Group Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
alarmStatusGroup OBJECT IDENTIFIER
|
||||
::= { pasoNeoIpe-common 3 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- alarmStatusGroup Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
asTermCardGroup OBJECT IDENTIFIER
|
||||
::= { alarmStatusGroup 36 }
|
||||
|
||||
asTermCardTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF AsTermCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "TERM card object for iPASO1000."
|
||||
::= { asTermCardGroup 1 }
|
||||
|
||||
asTermCardEntry OBJECT-TYPE
|
||||
SYNTAX AsTermCardEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
INDEX { asTermCardIndex }
|
||||
::= { asTermCardTable 1 }
|
||||
|
||||
AsTermCardEntry ::= SEQUENCE {
|
||||
asTermCardIndex Integer32,
|
||||
asTermCardNEAddress IpAddress,
|
||||
termAlarm SeverityValue,
|
||||
termComFailAlarm SeverityValue,
|
||||
termUnequipped SeverityValue,
|
||||
termTypeMismatch SeverityValue,
|
||||
termCardChange OffOnValue
|
||||
}
|
||||
|
||||
asTermCardIndex OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Index of this table."
|
||||
::= { asTermCardEntry 1 }
|
||||
|
||||
asTermCardNEAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "reserved."
|
||||
::= { asTermCardEntry 2 }
|
||||
|
||||
termAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Module Alarm"
|
||||
::= { asTermCardEntry 3 }
|
||||
|
||||
termComFailAlarm OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Communication FAIL"
|
||||
::= { asTermCardEntry 4 }
|
||||
|
||||
termUnequipped OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Unequipped"
|
||||
::= { asTermCardEntry 5 }
|
||||
|
||||
termTypeMismatch OBJECT-TYPE
|
||||
SYNTAX SeverityValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "Type Mismatch"
|
||||
::= { asTermCardEntry 6 }
|
||||
|
||||
termCardChange OBJECT-TYPE
|
||||
SYNTAX OffOnValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "TERM Card Change"
|
||||
::= { asTermCardEntry 7 }
|
||||
|
||||
-----------------------------------------------
|
||||
-- End User MIB Object Definitions
|
||||
-----------------------------------------------
|
||||
|
||||
END
|
1004
mibs/nec/LS100-MIB
Normal file
1004
mibs/nec/LS100-MIB
Normal file
File diff suppressed because it is too large
Load Diff
13781
mibs/nec/MMPF-MIB
Normal file
13781
mibs/nec/MMPF-MIB
Normal file
File diff suppressed because it is too large
Load Diff
6170
mibs/nec/MP-ATM-MIB
Normal file
6170
mibs/nec/MP-ATM-MIB
Normal file
File diff suppressed because it is too large
Load Diff
530
mibs/nec/MP-BUNDLE-MIB
Normal file
530
mibs/nec/MP-BUNDLE-MIB
Normal file
@ -0,0 +1,530 @@
|
||||
-- extracted from draft-carthic-mpbundle-mib-00.txt
|
||||
-- at Tue Jul 23 06:10:09 2002
|
||||
|
||||
MP-BUNDLE-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Integer32,
|
||||
Counter32,
|
||||
mib-2 FROM SNMPv2-SMI
|
||||
|
||||
MODULE-COMPLIANCE,
|
||||
OBJECT-GROUP FROM SNMPv2-CONF
|
||||
|
||||
TEXTUAL-CONVENTION,
|
||||
RowStatus FROM SNMPv2-TC
|
||||
|
||||
InterfaceIndex, ifIndex FROM IF-MIB;
|
||||
|
||||
mpBundleMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "200207040000Z"
|
||||
ORGANIZATION "HCL Technologies Ltd (Cisco ODC)"
|
||||
CONTACT-INFO
|
||||
" Carthic Sundararaj
|
||||
Email: csundara@cisco.com
|
||||
|
||||
"
|
||||
DESCRIPTION
|
||||
"The MIB to manage PPP Multilink Bundles."
|
||||
REVISION "200207040000Z"
|
||||
DESCRIPTION
|
||||
"Initial version of the MP-BUNDLE-MIB."
|
||||
|
||||
::= { mib-2 xx } -- to be assigned by RFC Editor
|
||||
|
||||
mpBundleObjects OBJECT IDENTIFIER ::= { mpBundleMIB 1 }
|
||||
|
||||
MpLinkState ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"State of PPP multilink bundle link."
|
||||
SYNTAX INTEGER {
|
||||
active(1),
|
||||
inactive(2)
|
||||
}
|
||||
|
||||
--
|
||||
-- PPP Multilink Bundle Objects
|
||||
--
|
||||
|
||||
mpBundleNextIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object contains the next appropriate value to be
|
||||
used for mpBundleIndex when creating entries in
|
||||
mpBundleTable. A manager must first retrieve the value of
|
||||
this object. The agent should modify the value of this
|
||||
object to reflect the next unassigned index after each
|
||||
retrieval by the manager. If the number of unassigned
|
||||
entries is exhausted, this object will take a value of 0."
|
||||
::= { mpBundleObjects 1 }
|
||||
|
||||
mpBundleTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpBundleEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table provides the management information applicable
|
||||
to a PPP Multilink Bundle. It provides a means to create
|
||||
new PPP Multilink bundles and existing bundles can be
|
||||
removed."
|
||||
::= { mpBundleObjects 2 }
|
||||
mpBundleEntry OBJECT-TYPE
|
||||
SYNTAX MpBundleEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in mpBundleTable."
|
||||
INDEX { mpBundleIndex }
|
||||
::= { mpBundleTable 1 }
|
||||
|
||||
MpBundleEntry ::= SEQUENCE {
|
||||
mpBundleIndex Integer32,
|
||||
mpBundleIfIndex InterfaceIndex,
|
||||
mpBundleRowStatus RowStatus,
|
||||
mpBundleMRRU Integer32,
|
||||
mpBundleSeqNumSize INTEGER,
|
||||
mpBundleEndpointIDClass INTEGER,
|
||||
mpBundleEndpointID OCTET STRING,
|
||||
mpBundleFragmentation INTEGER,
|
||||
mpBundleMaxFragmentSize Integer32,
|
||||
mpBundleLinksMin Integer32,
|
||||
mpBundleLinksMax Integer32,
|
||||
mpBundleLinksConfigured Integer32,
|
||||
mpBundleLinksActive Integer32,
|
||||
mpBundleTxSeqNum Integer32,
|
||||
mpBundleRxSeqNum Integer32,
|
||||
mpBundleFragmentLoss Counter32,
|
||||
mpBundleFragmentDiscards Counter32
|
||||
}
|
||||
|
||||
mpBundleIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A unique index identifying this entry in mpBundleTable."
|
||||
::= { mpBundleEntry 1 }
|
||||
|
||||
mpBundleIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The 'ifIndex' corresponding to this bundle."
|
||||
::= { mpBundleEntry 2 }
|
||||
mpBundleRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of this conceptual row."
|
||||
::= { mpBundleEntry 3 }
|
||||
|
||||
mpBundleMRRU OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
UNITS "Octets"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Maximum Received Reconstructed Unit for this bundle. It
|
||||
specifies the maximum number of octets in the Information
|
||||
fields of reassembled packets."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 5.1.1"
|
||||
::= { mpBundleEntry 4 }
|
||||
|
||||
mpBundleSeqNumSize OBJECT-TYPE
|
||||
SYNTAX INTEGER { shortSeqNum(1),
|
||||
longSeqNum(2)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The sequence number format to be used when packets are
|
||||
fragmented.
|
||||
|
||||
shortSeqNum - 12 bit sequence number format
|
||||
|
||||
longSeqNum - 24 bit sequence number format
|
||||
"
|
||||
REFERENCE
|
||||
"RFC 1990, Section 5.1.2"
|
||||
DEFVAL { longSeqNum }
|
||||
::= { mpBundleEntry 5 }
|
||||
mpBundleEndpointIDClass OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
nullClass(1),
|
||||
localAddress(2),
|
||||
ipAddress(3),
|
||||
ieee802dot1GlobalMACAddress(4),
|
||||
pppMagicNumberBlock(5),
|
||||
psnDirectoryNumber(6)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Class of Endpoint Discriminator/Identifier address
|
||||
space used for this bundle."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 5.1.3"
|
||||
DEFVAL { nullClass }
|
||||
::= { mpBundleEntry 6 }
|
||||
|
||||
mpBundleEndpointID OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (0..20))
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Endpoint Discriminator/Identifier used for this
|
||||
bundle."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 5.1.3"
|
||||
::= { mpBundleEntry 7 }
|
||||
|
||||
mpBundleFragmentation OBJECT-TYPE
|
||||
SYNTAX INTEGER { enable(1),
|
||||
disable(2)
|
||||
}
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The object providing control to enable or disable
|
||||
fragmentation."
|
||||
DEFVAL { disable }
|
||||
::= { mpBundleEntry 8 }
|
||||
mpBundleMaxFragmentSize OBJECT-TYPE
|
||||
SYNTAX Integer32 (-1..2147483647)
|
||||
UNITS "Octets"
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The maximum fragment size for this bundle. This object
|
||||
is valid only when fragmentation is enabled on the
|
||||
bundle.
|
||||
|
||||
The object must return a value of -1 if fragmentation
|
||||
is disabled. A value of 0 is not valid fragment size."
|
||||
DEFVAL { -1 }
|
||||
::= { mpBundleEntry 9 }
|
||||
|
||||
mpBundleLinksMin OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The minimum number of member links required to be active
|
||||
for this bundle to be active."
|
||||
::= { mpBundleEntry 10 }
|
||||
|
||||
mpBundleLinksMax OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The maximum number of links that can be configured as
|
||||
members of this bundle."
|
||||
::= { mpBundleEntry 11 }
|
||||
|
||||
mpBundleLinksConfigured OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of links configured as members of this bundle."
|
||||
::= { mpBundleEntry 12 }
|
||||
|
||||
mpBundleLinksActive OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of member links that are currently active."
|
||||
::= { mpBundleEntry 13 }
|
||||
mpBundleTxSeqNum OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..16777215)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The sequence number of the last transmitted fragment."
|
||||
::= { mpBundleEntry 14 }
|
||||
|
||||
mpBundleRxSeqNum OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..16777215)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The sequence number of the last received fragment."
|
||||
::= { mpBundleEntry 15 }
|
||||
|
||||
mpBundleFragmentLoss OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The count of lost fragments for this bundle. Fragments may
|
||||
be lost due to corruption of individual packets or link
|
||||
failure."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 4.1"
|
||||
::= { mpBundleEntry 16 }
|
||||
|
||||
mpBundleFragmentDiscards OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The count of fragments that were discarded on this bundle.
|
||||
Fragments are discarded if a fragmented multilink PPP packet
|
||||
could not be reassembled."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 4.1"
|
||||
::= { mpBundleEntry 17 }
|
||||
--
|
||||
-- PPP Multilink Bundle Link Objects
|
||||
--
|
||||
|
||||
mpBundleLinkTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpBundleLinkEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table provides means to configure member links to a
|
||||
bundle."
|
||||
::= { mpBundleObjects 3 }
|
||||
|
||||
mpBundleLinkEntry OBJECT-TYPE
|
||||
SYNTAX MpBundleLinkEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in mpBundleLinkTable."
|
||||
INDEX { mpBundleLinkIfIndex }
|
||||
::= { mpBundleLinkTable 1 }
|
||||
|
||||
MpBundleLinkEntry ::= SEQUENCE {
|
||||
mpBundleLinkIfIndex InterfaceIndex,
|
||||
mpBundleLinkBundleIndex Integer32,
|
||||
mpBundleLinkRowStatus RowStatus,
|
||||
mpBundleLinkDiffDelay Integer32,
|
||||
mpBundleLinkState MpLinkState
|
||||
}
|
||||
|
||||
mpBundleLinkIfIndex OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The 'ifIndex' corresponding to this link."
|
||||
::= { mpBundleLinkEntry 1 }
|
||||
|
||||
mpBundleLinkBundleIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The mpBundleIndex of the bundle of which this link a
|
||||
member."
|
||||
::= { mpBundleLinkEntry 2 }
|
||||
mpBundleLinkRowStatus OBJECT-TYPE
|
||||
SYNTAX RowStatus
|
||||
MAX-ACCESS read-create
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The status of this conceptual row."
|
||||
::= { mpBundleLinkEntry 3 }
|
||||
|
||||
mpBundleLinkDiffDelay OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
UNITS "milliseconds"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object provides the delay for this link relative to
|
||||
the link with the longest delay. The value will be 0 for
|
||||
the link with the longest delay."
|
||||
REFERENCE
|
||||
"RFC 1990, Section 4.2"
|
||||
::= { mpBundleLinkEntry 4 }
|
||||
|
||||
mpBundleLinkState OBJECT-TYPE
|
||||
SYNTAX MpLinkState
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object indicates the multilink state of the link."
|
||||
::= { mpBundleLinkEntry 5 }
|
||||
|
||||
--
|
||||
-- Mapping Objects
|
||||
--
|
||||
|
||||
mpBundleIfIndexMappingTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpBundleIfIndexMappingEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table mapping the 'ifIndex' values of 'mpBundleIfIndex'
|
||||
values to its corresponding 'mpBundleIndex' values."
|
||||
::= { mpBundleObjects 4 }
|
||||
|
||||
mpBundleIfIndexMappingEntry OBJECT-TYPE
|
||||
SYNTAX MpBundleIfIndexMappingEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in mpBundleIfIndexMappingTable."
|
||||
|
||||
INDEX { ifIndex }
|
||||
::= { mpBundleIfIndexMappingTable 1 }
|
||||
|
||||
MpBundleIfIndexMappingEntry ::= SEQUENCE {
|
||||
mpBundleIfIndexMapping Integer32
|
||||
}
|
||||
|
||||
mpBundleIfIndexMapping OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The 'mpBundleIndex' value corresponding to the 'ifIndex'
|
||||
value of this row."
|
||||
::= { mpBundleIfIndexMappingEntry 1 }
|
||||
|
||||
-- Conformance Information
|
||||
|
||||
mpBundleMIBConformance OBJECT IDENTIFIER ::= { mpBundleMIB 2 }
|
||||
|
||||
mpBundleMIBCompliances OBJECT IDENTIFIER
|
||||
::= { mpBundleMIBConformance 1 }
|
||||
|
||||
mpBundleMIBGroups OBJECT IDENTIFIER ::= { mpBundleMIBConformance 2 }
|
||||
|
||||
-- Compliance Statements
|
||||
|
||||
mpBundleMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for entities which implement
|
||||
MP-BUNDLE-MIB."
|
||||
MODULE -- this module
|
||||
|
||||
MANDATORY-GROUPS { mpBundleGroup,
|
||||
mpBundleLinkGroup
|
||||
}
|
||||
OBJECT mpBundleSeqNumSize
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleMRRU
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleEndpointIDClass
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleEndpointID
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleFragmentation
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleMaxFragmentSize
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleLinksMin
|
||||
MIN-ACCESS read-only
|
||||
DESCRIPTION
|
||||
"Write access is not required."
|
||||
|
||||
OBJECT mpBundleLinkDiffDelay
|
||||
MIN-ACCESS not-accessible
|
||||
DESCRIPTION
|
||||
"This is an optional attribute."
|
||||
::= { mpBundleMIBCompliances 1 }
|
||||
|
||||
-- Units of Conformance
|
||||
|
||||
mpBundleGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
mpBundleIfIndex,
|
||||
mpBundleRowStatus,
|
||||
mpBundleSeqNumSize,
|
||||
mpBundleMRRU,
|
||||
mpBundleEndpointIDClass,
|
||||
mpBundleEndpointID,
|
||||
mpBundleFragmentation,
|
||||
mpBundleMaxFragmentSize,
|
||||
mpBundleLinksMin,
|
||||
mpBundleLinksMax,
|
||||
mpBundleLinksConfigured,
|
||||
mpBundleLinksActive,
|
||||
mpBundleTxSeqNum,
|
||||
mpBundleRxSeqNum,
|
||||
mpBundleFragmentLoss,
|
||||
mpBundleFragmentDiscards,
|
||||
mpBundleIfIndexMapping
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Objects in mpBundleTable and
|
||||
mpBundleIfIndexMappingTable."
|
||||
::= { mpBundleMIBGroups 1 }
|
||||
|
||||
mpBundleLinkGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
mpBundleLinkBundleIndex,
|
||||
mpBundleLinkRowStatus,
|
||||
mpBundleLinkDiffDelay,
|
||||
mpBundleLinkState
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Object in mpBundleLinkTable."
|
||||
::= { mpBundleMIBGroups 2 }
|
||||
|
||||
|
||||
END
|
||||
|
||||
--
|
||||
-- Copyright (C) The Internet Society (2002). All Rights Reserved.
|
||||
--
|
||||
-- This document and translations of it may be copied and furnished to
|
||||
-- others, and derivative works that comment on or otherwise explain
|
||||
-- it or assist in its implementation may be prepared, copied,
|
||||
-- published and distributed, in whole or in part, without restriction
|
||||
-- of any kind, provided that the above copyright notice and this
|
||||
-- paragraph are included on all such copies and derivative works.
|
||||
-- However, this document itself may not be modified in any way, such
|
||||
-- as by removing the copyright notice or references to the Internet
|
||||
-- Society or other Internet organizations, except as needed for the
|
||||
-- purpose of developing Internet standards in which case the
|
||||
-- procedures for copyrights defined in the Internet Standards process
|
||||
-- must be followed, or as required to translate it into languages
|
||||
-- other than English.
|
||||
--
|
||||
-- The limited permissions granted above are perpetual and will not be
|
||||
-- revoked by the Internet Society or its successors or assigns.
|
||||
--
|
||||
-- This document and the information contained herein is provided on
|
||||
-- an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET
|
||||
-- ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR
|
||||
-- IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
|
||||
-- THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
|
||||
-- WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
388
mibs/nec/MP-DETOUR-MIB
Normal file
388
mibs/nec/MP-DETOUR-MIB
Normal file
@ -0,0 +1,388 @@
|
||||
-- ***************************************************************************
|
||||
-- FileName :mpDetourMib.my
|
||||
-- Description :Detour Private MIB
|
||||
-- Revision History :
|
||||
-- Ver. mark date
|
||||
-- 01.01 @001 08/14/2001
|
||||
-- ***************************************************************************
|
||||
|
||||
MP-DETOUR-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
mgmt, NetworkAddress, IpAddress, Counter, Gauge, TimeTicks
|
||||
FROM RFC1155-SMI
|
||||
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215;
|
||||
|
||||
DisplayString ::= OCTET STRING
|
||||
|
||||
|
||||
-- The following definition is privately defined for IX5000 Private MIB
|
||||
|
||||
org OBJECT IDENTIFIER ::= { iso 3 }
|
||||
dod OBJECT IDENTIFIER ::= { org 6 }
|
||||
internet OBJECT IDENTIFIER ::= { dod 1 }
|
||||
private OBJECT IDENTIFIER ::= { internet 4 }
|
||||
enterprises OBJECT IDENTIFIER ::= { private 1 }
|
||||
nec OBJECT IDENTIFIER ::= { enterprises 119}
|
||||
|
||||
necProduct OBJECT IDENTIFIER ::= { nec 1 }
|
||||
datax OBJECT IDENTIFIER ::= { necProduct 3 }
|
||||
mmpf OBJECT IDENTIFIER ::= { datax 13 }
|
||||
mmn9110 OBJECT IDENTIFIER ::= { mmpf 1 }
|
||||
mmn9120 OBJECT IDENTIFIER ::= { mmpf 2 }
|
||||
|
||||
nec-mib OBJECT IDENTIFIER ::= { nec 2 }
|
||||
necProductDepend OBJECT IDENTIFIER ::= { nec-mib 3 }
|
||||
datax-mib OBJECT IDENTIFIER ::= { necProductDepend 3 }
|
||||
mmpf-mib OBJECT IDENTIFIER ::= { datax-mib 13 }
|
||||
|
||||
mpDetour OBJECT IDENTIFIER ::= { mmpf-mib 130 }
|
||||
|
||||
|
||||
-- Detour Private MIB
|
||||
|
||||
|
||||
--
|
||||
-- <20>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797><EFBFBD><EFBFBD><EFBFBD>
|
||||
--
|
||||
|
||||
mpDetourTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpDetourEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table type object of Detour infomation"
|
||||
::= { mpDetour 1 }
|
||||
|
||||
mpDetourEntry OBJECT-TYPE
|
||||
SYNTAX MpDetourEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table entry of mpDetourTable."
|
||||
INDEX { mpDetourID }
|
||||
::= { mpDetourTable 1 }
|
||||
|
||||
|
||||
MpDetourEntry ::=
|
||||
SEQUENCE {
|
||||
mpDetourID
|
||||
INTEGER,
|
||||
mpObservationIfindex
|
||||
INTEGER,
|
||||
mpObservationIfType
|
||||
INTEGER,
|
||||
mpObservationIfNumber
|
||||
INTEGER,
|
||||
mpDetourIfindex
|
||||
INTEGER,
|
||||
mpDetourIfType
|
||||
INTEGER,
|
||||
mpDetourIfNumber
|
||||
INTEGER,
|
||||
mpObservationAdminStatus
|
||||
INTEGER,
|
||||
mpObservationOperStatus
|
||||
INTEGER,
|
||||
mpDiscardIfindex
|
||||
INTEGER,
|
||||
mpDiscardIfType
|
||||
INTEGER,
|
||||
mpDiscardIfNumber
|
||||
INTEGER,
|
||||
mpDetourAdminStatus
|
||||
INTEGER,
|
||||
mpDetourOperStatus
|
||||
INTEGER,
|
||||
mpDiscardAdminStatus
|
||||
INTEGER,
|
||||
mpDiscardOperStatus
|
||||
INTEGER,
|
||||
mpRouteStatus
|
||||
INTEGER,
|
||||
mpInhibitMode
|
||||
INTEGER,
|
||||
mpWatchMode
|
||||
INTEGER
|
||||
}
|
||||
|
||||
--Detour ID
|
||||
mpDetourID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is ifIndex of observation route."
|
||||
--<2D>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797><EFBFBD><EFBFBD>ʎq<CA8E>F<EFBFBD>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797>u<EFBFBD><75><EFBFBD>b<EFBFBD>N<EFBFBD><4E><EFBFBD>Ď<EFBFBD><C48E><EFBFBD><EFBFBD>[<5B>g<EFBFBD><67><EFBFBD>Ď<EFBFBD><C48E><EFBFBD><EFBFBD>邽<EFBFBD>߂ю<DF82><D18E>ʎq
|
||||
::= { mpDetourEntry 1 }
|
||||
|
||||
--<2D>I<EFBFBD>@ifindex
|
||||
mpObservationIfindex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is ifIndex of observation route."
|
||||
::= { mpDetourEntry 2 }
|
||||
|
||||
--<2D>I<EFBFBD><EFBFBD><F18CB389>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>^<5E>C<EFBFBD>v
|
||||
mpObservationIfType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
atmpp(1),
|
||||
vlan(2),
|
||||
lis(3),
|
||||
outband(4),
|
||||
trunk(5),
|
||||
ppp(6),
|
||||
frpp(7),
|
||||
vlantrap(8),
|
||||
mplspp(9)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface type of observation route."
|
||||
::= { mpDetourEntry 3 }
|
||||
|
||||
--<2D>I<EFBFBD><EFBFBD><F18CB389>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>ԍ<EFBFBD>
|
||||
mpObservationIfNumber OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface number of observation route."
|
||||
::= { mpDetourEntry 4 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>@ifindex
|
||||
mpDetourIfindex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is ifIndex of detour route."
|
||||
::= { mpDetourEntry 5 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD>扼<EFBFBD>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>^<5E>C<EFBFBD>v
|
||||
mpDetourIfType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
atmpp(1),
|
||||
vlan(2),
|
||||
lis(3),
|
||||
outband(4),
|
||||
trunk(5),
|
||||
ppp(6),
|
||||
frpp(7),
|
||||
vlantrap(8),
|
||||
mplspp(9)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface type of detour route."
|
||||
::= { mpDetourEntry 6 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD>扼<EFBFBD>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>ԍ<EFBFBD>
|
||||
mpDetourIfNumber OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface number of detour route."
|
||||
::= { mpDetourEntry 7 }
|
||||
|
||||
--<2D>I<EFBFBD>C<F18CB383><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD>ݒ<EFBFBD><DD92><EFBFBD><EFBFBD><EFBFBD>
|
||||
mpObservationAdminStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
administer status of this observation route."
|
||||
::= { mpDetourEntry 8 }
|
||||
|
||||
--<2D>I<EFBFBD>C<F18CB383><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
mpObservationOperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
operational status of this observation route."
|
||||
::= { mpDetourEntry 9 }
|
||||
|
||||
--<2D>p<EFBFBD>P<EFBFBD>b<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>p<EFBFBD>@ifindex @001<30>lj<EFBFBD>
|
||||
mpDiscardIfindex OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is ifIndex of discard route."
|
||||
::= { mpDetourEntry 10 }
|
||||
|
||||
--<2D>p<EFBFBD>P<EFBFBD>b<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>p<EFBFBD><70><EFBFBD>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>^<5E>C<EFBFBD>v @001<30>lj<EFBFBD>
|
||||
mpDiscardIfType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
atmpp(1),
|
||||
vlan(2),
|
||||
lis(3),
|
||||
outband(4),
|
||||
trunk(5),
|
||||
ppp(6),
|
||||
frpp(7),
|
||||
vlantrap(8),
|
||||
mplspp(9)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface type of discard route."
|
||||
::= { mpDetourEntry 11 }
|
||||
|
||||
--<2D>p<EFBFBD>P<EFBFBD>b<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>p<EFBFBD><70><EFBFBD>z<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>ԍ<EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpDiscardIfNumber OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is interface number of discard route."
|
||||
::= { mpDetourEntry 12 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD>ݒ<EFBFBD><DD92><EFBFBD><EFBFBD><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpDetourAdminStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
administer status of this detour route."
|
||||
::= { mpDetourEntry 13 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpDetourOperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
operational status of this detour route."
|
||||
::= { mpDetourEntry 14 }
|
||||
|
||||
--<2D>p<EFBFBD>P<EFBFBD>b<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>p<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD>ݒ<EFBFBD><DD92><EFBFBD><EFBFBD><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpDiscardAdminStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
administer status of this discard route."
|
||||
::= { mpDetourEntry 15 }
|
||||
|
||||
--<2D>p<EFBFBD>P<EFBFBD>b<EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD>p<EFBFBD>C<EFBFBD><43><EFBFBD>^<5E>t<EFBFBD>F<EFBFBD>[<5B>X<EFBFBD>̓<EFBFBD><CC93><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpDiscardOperStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
operational status of this discard route."
|
||||
::= { mpDetourEntry 16 }
|
||||
|
||||
--<2D>Ď<EFBFBD><C48E><EFBFBD><EFBFBD>[<5B>g<EFBFBD>̏<EFBFBD><CC8F><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpRouteStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"The value of this object identifies the desired
|
||||
operational status of this observe route."
|
||||
::= { mpDetourEntry 17 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD>}<7D>~<7E>ݒ<EFBFBD>/<2F><><EFBFBD><EFBFBD> @001<30>lj<EFBFBD>
|
||||
mpInhibitMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is inhibit mode data."
|
||||
::= { mpDetourEntry 18 }
|
||||
|
||||
--<2D>I<EFBFBD><49><EFBFBD>Ď<EFBFBD><C48E><EFBFBD><EFBFBD>[<5B>h @001<30>lj<EFBFBD>
|
||||
mpWatchMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This object is watch mode data."
|
||||
::= { mpDetourEntry 19 }
|
||||
|
||||
--
|
||||
-- <20>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797>\<5C><><EFBFBD>ω<EFBFBD>
|
||||
--
|
||||
mpDetourConfigChangeTimeStamp OBJECT IDENTIFIER ::= { mpDetour 2 }
|
||||
|
||||
mpDetourConfigLastChange OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object indicates the the time which configuration of the Detour data
|
||||
is changed."
|
||||
--<2D>\<5C><><EFBFBD>Ɋւ<C98A><D682><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԕω<D495><CF89><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
|
||||
--<2D>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797><EFBFBD>Config<69>f<EFBFBD>[<5B>^<5E><><EFBFBD>ݒ薔<DD92>͍폜<CD8D><ED8F9C><EFBFBD>ꂽ<EFBFBD><EA82BD>
|
||||
--<2D>ω<EFBFBD><CF89><EFBFBD><EFBFBD>_<EFBFBD><5F>TimeTicks<6B><73><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD><EFBFBD><EFBFBD>B
|
||||
|
||||
::= { mpDetourConfigChangeTimeStamp 1 }
|
||||
|
||||
--
|
||||
-- <20>I<EFBFBD><49><EFBFBD>Ǘ<EFBFBD><C797><EFBFBD><EFBFBD>ԕω<D495>
|
||||
--
|
||||
mpDetourStatusTimeStamp OBJECT IDENTIFIER ::= { mpDetour 3 }
|
||||
|
||||
mpDetourStatusLastChange OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object indicates the the time which configuration of
|
||||
the operational status is changed."
|
||||
--<2D>I<EFBFBD>̓<F18CB382><CC93><EFBFBD>Oper<65>@Status<75>̏<EFBFBD><CC8F>ԕω<D495><CF89><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
|
||||
--<2D>ω<EFBFBD><CF89><EFBFBD><EFBFBD>_<EFBFBD><5F>TimeTicks<6B><73><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD><EFBFBD><EFBFBD>B
|
||||
|
||||
::= { mpDetourStatusTimeStamp 1 }
|
||||
|
||||
|
||||
END
|
||||
|
2723
mibs/nec/MP-FRPP-MIB
Normal file
2723
mibs/nec/MP-FRPP-MIB
Normal file
File diff suppressed because it is too large
Load Diff
184
mibs/nec/MP-IPV6-MIB
Normal file
184
mibs/nec/MP-IPV6-MIB
Normal file
@ -0,0 +1,184 @@
|
||||
-- ****************************************************************************
|
||||
-- FileName :mpIpv6Mib.my
|
||||
-- Description :Ipv6 Private MIB
|
||||
-- Revision History :
|
||||
-- Ver. mark date
|
||||
-- 01.00 - 08/07/2001
|
||||
-- ****************************************************************************
|
||||
--
|
||||
MP-IPV6-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
mgmt, NetworkAddress, IpAddress, Counter, Gauge, TimeTicks
|
||||
FROM RFC1155-SMI
|
||||
|
||||
ifIndex
|
||||
FROM RFC1213-MIB
|
||||
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
|
||||
mmpf-mib
|
||||
FROM MMPF-MIB
|
||||
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215;
|
||||
|
||||
Ipv6Address ::= OCTET STRING (SIZE (16))
|
||||
|
||||
|
||||
-- The following definition is privately defined for IX5000 Private MIB
|
||||
|
||||
mpIpv6 OBJECT IDENTIFIER ::= { mmpf-mib 131 }
|
||||
|
||||
|
||||
-- Ipv6 Private MIB
|
||||
|
||||
mpIpv6PingTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpIpv6PingEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The table of ping6 management information relevant to
|
||||
this entity's ICMPv6 echo identifier."
|
||||
::= { mpIpv6 1 }
|
||||
|
||||
mpIpv6PingEntry OBJECT-TYPE
|
||||
SYNTAX MpIpv6PingEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The ping6 management information for one of this
|
||||
entity's ICMPv6 echo identifier."
|
||||
INDEX { mpIpv6PingId }
|
||||
::= { mpIpv6PingTable 1 }
|
||||
|
||||
MpIpv6PingEntry ::=
|
||||
SEQUENCE {
|
||||
mpIpv6PingId
|
||||
INTEGER,
|
||||
mpIpv6PingTarget
|
||||
Ipv6Address,
|
||||
mpIpv6PingTargetSiteId
|
||||
INTEGER,
|
||||
mpIpv6PingRequestSend
|
||||
INTEGER,
|
||||
mpIpv6PingDataLength
|
||||
INTEGER,
|
||||
mpIpv6PingSendHopLimit
|
||||
INTEGER,
|
||||
mpIpv6PingSendTimeOut
|
||||
INTEGER,
|
||||
mpIpv6PingSendInterface
|
||||
INTEGER,
|
||||
mpIpv6PingStatus
|
||||
INTEGER,
|
||||
mpIpv6PingResult
|
||||
INTEGER,
|
||||
mpIpv6PingErrorSourceAddress
|
||||
Ipv6Address
|
||||
}
|
||||
|
||||
mpIpv6PingId OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This is the index to identify the ping6 entry.
|
||||
The value of this index must be assigned uniquely,
|
||||
within the range of 1 - 65535.
|
||||
But generable ping entry is four simultaneously."
|
||||
|
||||
::= { mpIpv6PingEntry 1 }
|
||||
|
||||
mpIpv6PingTarget OBJECT-TYPE
|
||||
SYNTAX Ipv6Address
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the destination IPv6
|
||||
address for this entry. This IPv6 address must
|
||||
always be a unicast IPv6 address."
|
||||
::= { mpIpv6PingEntry 2 }
|
||||
|
||||
mpIpv6PingTargetSiteId OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the site id to which the
|
||||
destination belong, within the range of 1 - 8.(1 is default site.)
|
||||
it is necessary to set up this value, Only when a
|
||||
site local address is specified to be mpIpv6PingTarget.
|
||||
this value can be omitted and 1 is set up when it omits."
|
||||
::= { mpIpv6PingEntry 3 }
|
||||
|
||||
mpIpv6PingRequestSend OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the ping6 request
|
||||
number of the times, within the range of 1 - 65535(default 1)."
|
||||
::= { mpIpv6PingEntry 4 }
|
||||
|
||||
mpIpv6PingDataLength OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the ping6 data
|
||||
length, within the range of 0 - 65507(default 64)."
|
||||
::= { mpIpv6PingEntry 5 }
|
||||
|
||||
mpIpv6PingSendHopLimit OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the HOP LIMIT value in
|
||||
ping6 packet, within the range of 1 - 255(default 64)."
|
||||
::= { mpIpv6PingEntry 6 }
|
||||
|
||||
mpIpv6PingSendTimeOut OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is the ping6 time out
|
||||
value, within the range of 1 - 60 seconds(default 1)."
|
||||
::= { mpIpv6PingEntry 7 }
|
||||
|
||||
mpIpv6PingSendInterface OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "The value of this object is ifIndex. IPv6 address
|
||||
assigned ifIndex is set as source IPv6 address in
|
||||
ping6 packets."
|
||||
::= { mpIpv6PingEntry 8 }
|
||||
|
||||
mpIpv6PingStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
create(1),
|
||||
inProgress(2),
|
||||
complete(3),
|
||||
destroy(4)
|
||||
}
|
||||
ACCESS read-write
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object refers to the ping6 entry status.
|
||||
When this object is set to create(1), ping6
|
||||
entry is created. Set to inProgress(2), ping6
|
||||
is Started. When a reply or icmpv6 error
|
||||
receiveed and time out occured, the status
|
||||
become complete(3). This object can not set to
|
||||
complete(3). Set to destroy(4), entry is deleted."
|
||||
::= { mpIpv6PingEntry 9 }
|
||||
|
||||
mpIpv6PingResult OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object refers to the ping6 result status."
|
||||
::= { mpIpv6PingEntry 10 }
|
||||
|
||||
mpIpv6PingErrorSourceAddress OBJECT-TYPE
|
||||
SYNTAX Ipv6Address
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This value of this object is the error source
|
||||
IPv6 address in icmpv6 error reply message."
|
||||
::= { mpIpv6PingEntry 11 }
|
||||
END
|
519
mibs/nec/MP-MIB
Normal file
519
mibs/nec/MP-MIB
Normal file
@ -0,0 +1,519 @@
|
||||
-- extracted from draft-kajos-hmultimediamib-00.txt
|
||||
-- at Mon Nov 15 17:11:06 1999
|
||||
|
||||
MP-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
Counter32, Integer32, enterprises, OBJECT-TYPE,
|
||||
MODULE-IDENTITY, NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
TAddress, RowStatus, TruthValue, DateAndTime
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
MmGatekeeperID, MmTAddressTag,MmEndpointID,
|
||||
MmGlobalIdentifier
|
||||
|
||||
FROM MULTI-MEDIA-MIB-TC;
|
||||
|
||||
|
||||
|
||||
-- Define the top of this MIB.
|
||||
media OBJECT IDENTIFIER ::= { enterprises videoserver(3011) 2 }
|
||||
-- this is the MIB module for the H.323 MP objects
|
||||
h323MP MODULE-IDENTITY
|
||||
LAST-UPDATED "9808062253Z" -- August 6, 1998
|
||||
ORGANIZATION "VideoServer"
|
||||
CONTACT-INFO
|
||||
" Irina Suconick
|
||||
Postal: Video Server
|
||||
63 Third st.
|
||||
Burlington, MA 01803
|
||||
Tel: (781)505-2155
|
||||
E-Mail: isuconick@videoserver.com "
|
||||
DESCRIPTION
|
||||
" "
|
||||
::= { media 2 }
|
||||
|
||||
--groups in H.323 mp
|
||||
|
||||
mpConfig OBJECT IDENTIFIER ::= { h323MP 1 }
|
||||
mpConference OBJECT IDENTIFIER ::= { h323MP 2 }
|
||||
|
||||
|
||||
|
||||
mpConfigMaxAudioMixCount OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum number of participants allowed in the audio mix."
|
||||
::= { mpConfig 1 }
|
||||
mpConfigMaxVideoMixCount OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum number of participants allowed in the video mix."
|
||||
::= { mpConfig 2 }
|
||||
|
||||
mpConferenceTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpConferenceTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains information about running conferences.
|
||||
It is a list of conference entries. The number of entries
|
||||
equals to the number of running conferences."
|
||||
::= { mpConference 1 }
|
||||
mpConferenceTableEntry OBJECT-TYPE
|
||||
SYNTAX MpConferenceTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"It contains objects that describe a specific conference."
|
||||
INDEX { mpConferenceConferenceId}
|
||||
::= { mpConferenceTable 1 }
|
||||
MpConferenceTableEntry ::=
|
||||
SEQUENCE {
|
||||
mpConferenceConferenceId
|
||||
MmGlobalIdentifier,
|
||||
mpConferenceAudioNoiseThreshold
|
||||
Integer32,
|
||||
mpConferenceLipSyncEnable
|
||||
TruthValue
|
||||
}
|
||||
|
||||
mpConferenceConferenceId OBJECT-TYPE
|
||||
SYNTAX MmGlobalIdentifier
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The conference identifier as specified in ITU-T H.323V2
|
||||
specification."
|
||||
::= { mpConferenceTableEntry 1 }
|
||||
|
||||
mpConferenceAudioNoiseThreshold OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value represents the audio power level
|
||||
above which the signal is detected as speech."
|
||||
::= { mpConferenceTableEntry 2 }
|
||||
|
||||
mpConferenceLipSyncEnable OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates rather the lip
|
||||
syncronization adjustments are performed."
|
||||
::= { mpConferenceTableEntry 3 }
|
||||
|
||||
mpConferenceParticipantsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpConferenceParticipantsTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains information about conference
|
||||
participants. It is a list of participant entries. The
|
||||
number of entries equals the number of participants for all
|
||||
conferences."
|
||||
::= { mpConference 2 }
|
||||
|
||||
mpConferenceParticipantsTableEntry OBJECT-TYPE
|
||||
SYNTAX MpConferenceParticipantsTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"It contains objects that describe a specific conference
|
||||
participant."
|
||||
INDEX { mpConferenceConferenceId,
|
||||
mpConferenceParticipantsTableIndex }
|
||||
::= { mpConferenceParticipantsTable 1 }
|
||||
|
||||
MpConferenceParticipantsTableEntry ::=
|
||||
SEQUENCE {
|
||||
mpConferenceParticipantsTableIndex
|
||||
Integer32,
|
||||
mpConferenceParticipantsEndpointId
|
||||
MmEndpointID,
|
||||
mpConferenceParticipantsTransmitAudioState
|
||||
INTEGER,
|
||||
mpConferenceParticipantsReceiveAudioState
|
||||
INTEGER,
|
||||
mpConferenceParticipantsTransmitVideoState
|
||||
INTEGER,
|
||||
mpConferenceParticipantsReceiveVideoState
|
||||
INTEGER,
|
||||
mpConferenceParticipantsLoudnessMeasurement
|
||||
Integer32,
|
||||
mpConferenceParticipantsVoiceActivity
|
||||
TruthValue,
|
||||
mpConferenceParticipantsInputAudioGain
|
||||
Integer32,
|
||||
mpConferenceParticipantsOutputAudioGain
|
||||
Integer32,
|
||||
mpConferenceParticipantsMaxAudioEncoderPayloadSize
|
||||
Integer32,
|
||||
mpConferenceParticipantsMaxAudioDecoderPayloadSize
|
||||
Integer32,
|
||||
mpConferenceParticipantsTotalPacketsTransmitted
|
||||
Counter32,
|
||||
mpConferenceParticipantsTotalPacketsReceived
|
||||
Counter32,
|
||||
mpConferenceParticipantsInvalidPacketErrors
|
||||
Counter32,
|
||||
mpConferenceParticipantsLateAudioPacketsDropped
|
||||
Counter32,
|
||||
mpConferenceParticipantsReceivedSilencePackets
|
||||
Counter32,
|
||||
mpConferenceParticipantsSilencePacketsGenerated
|
||||
Counter32,
|
||||
mpConferenceParticipantsVideoFrameRate
|
||||
Integer32,
|
||||
mpConferenceParticipantsVideoResolution
|
||||
INTEGER,
|
||||
mpConferenceParticipantsFullPictureCounter
|
||||
Integer32
|
||||
}
|
||||
|
||||
mpConferenceParticipantsTableIndex OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An arbitrary index to this table. This index is one for the
|
||||
first participant for every given conference. It is
|
||||
incremented by one for each subsequent participant of the
|
||||
same conference. The last index for a particular conference
|
||||
is equal to the number of participants for that conference."
|
||||
::= { mpConferenceParticipantsTableEntry 1 }
|
||||
mpConferenceParticipantsEndpointId OBJECT-TYPE
|
||||
SYNTAX MmEndpointID
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The H.323 id of this participant as described in ITU-T
|
||||
H.323V2 specification."
|
||||
::= { mpConferenceParticipantsTableEntry 2 }
|
||||
mpConferenceParticipantsTransmitAudioState OBJECT-TYPE
|
||||
SYNTAX INTEGER {normal (1), mute (2), toneGeneration (3), off (4)}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates the state of transmitted audio:
|
||||
normal - transmit normal audio
|
||||
toneGeneration - transmit test tone
|
||||
mute - transmit silence audio
|
||||
off - no audio is transmitted"
|
||||
::= { mpConferenceParticipantsTableEntry 3 }
|
||||
mpConferenceParticipantsReceiveAudioState OBJECT-TYPE
|
||||
SYNTAX INTEGER {normal (1), loopBack (2), block (3), off (4)}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates the state of received audio:
|
||||
normal - receive normal audio
|
||||
loopBack - received audio presented unchanged to the
|
||||
transmitter
|
||||
block - received audio is not part of the mix
|
||||
off - no audio is received"
|
||||
::= { mpConferenceParticipantsTableEntry 4 }
|
||||
|
||||
mpConferenceParticipantsTransmitVideoState OBJECT-TYPE
|
||||
SYNTAX INTEGER {on (1), off (2)}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates the state of transmitted video:
|
||||
on - normal video is transmitted
|
||||
off - no video is transmitted."
|
||||
::= { mpConferenceParticipantsTableEntry 5 }
|
||||
mpConferenceParticipantsReceiveVideoState OBJECT-TYPE
|
||||
SYNTAX INTEGER {normal (1), block (2), off (3)}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates the state of transmitted video:
|
||||
normal - normal video is received
|
||||
block - received video is not displayed
|
||||
off - no video is transmitted."
|
||||
::= { mpConferenceParticipantsTableEntry 6 }
|
||||
mpConferenceParticipantsLoudnessMeasurement OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This is the current loudness measurement value in dB."
|
||||
::= { mpConferenceParticipantsTableEntry 7 }
|
||||
mpConferenceParticipantsVoiceActivity OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value is True when the speech is detected."
|
||||
::= { mpConferenceParticipantsTableEntry 8 }
|
||||
mpConferenceParticipantsInputAudioGain OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value reflects the current input volume adjustment in
|
||||
dB."
|
||||
::= { mpConferenceParticipantsTableEntry 9 }
|
||||
mpConferenceParticipantsOutputAudioGain OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value reflects the current output volume adjustment in
|
||||
dB."
|
||||
::= { mpConferenceParticipantsTableEntry 10 }
|
||||
mpConferenceParticipantsMaxAudioEncoderPayloadSize OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The maximum size of payload in ms."
|
||||
::= { mpConferenceParticipantsTableEntry 11 }
|
||||
mpConferenceParticipantsMaxAudioDecoderPayloadSize OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The maximum size of payload in ms."
|
||||
::= { mpConferenceParticipantsTableEntry 12 }
|
||||
mpConferenceParticipantsTotalPacketsTransmitted OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of transmitted packets."
|
||||
::= { mpConferenceParticipantsTableEntry 13 }
|
||||
mpConferenceParticipantsTotalPacketsReceived OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of received packets."
|
||||
::= { mpConferenceParticipantsTableEntry 14 }
|
||||
mpConferenceParticipantsInvalidPacketErrors OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of packets with invalid packet errors."
|
||||
::= { mpConferenceParticipantsTableEntry 15 }
|
||||
|
||||
mpConferenceParticipantsLateAudioPacketsDropped OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of packets that arrived too late to be
|
||||
processed."
|
||||
::= { mpConferenceParticipantsTableEntry 16 }
|
||||
mpConferenceParticipantsReceivedSilencePackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of silence packets that were received."
|
||||
::= { mpConferenceParticipantsTableEntry 17 }
|
||||
mpConferenceParticipantsSilencePacketsGenerated OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The total number of silence packets that were generated."
|
||||
::= { mpConferenceParticipantsTableEntry 18 }
|
||||
mpConferenceParticipantsVideoFrameRate OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value represents the current measured frame rate
|
||||
received."
|
||||
::= { mpConferenceParticipantsTableEntry 19 }
|
||||
mpConferenceParticipantsVideoResolution OBJECT-TYPE
|
||||
SYNTAX INTEGER { h263SubQCIF (1),h263QCIF (2),
|
||||
h263CIF(3), h2634CIF(4),
|
||||
h26316CIF(5), h263Reserved (6),
|
||||
h261QCIF(7),h261CIF(8) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Received video resolution."
|
||||
::= { mpConferenceParticipantsTableEntry 20 }
|
||||
|
||||
mpConferenceParticipantsFullPictureCounter OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value represents the number of full image pictures
|
||||
received."
|
||||
::= { mpConferenceParticipantsTableEntry 21 }
|
||||
mpConferenceGlobalAudioMixTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF
|
||||
MpConferenceGlobalAudioMixTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains information about conference
|
||||
participants that are present in a global audio mix.
|
||||
It is a list of participant entries. The number of entries
|
||||
equals to the sum of all audio mix participants in all
|
||||
conferences."
|
||||
::= { mpConference 3 }
|
||||
mpConferenceGlobalAudioMixTableEntry OBJECT-TYPE
|
||||
SYNTAX MpConferenceGlobalAudioMixTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"It contains objects that describe the participants."
|
||||
INDEX { mpConferenceConferenceId,
|
||||
mpConferenceGlobalAudioMixTableIndex }
|
||||
::= { mpConferenceGlobalAudioMixTable 1 }
|
||||
MpConferenceGlobalAudioMixTableEntry ::=
|
||||
SEQUENCE {
|
||||
mpConferenceGlobalAudioMixTableIndex
|
||||
Integer32,
|
||||
mpConferenceGlobalAudioMixTerminalIdentifier
|
||||
MmEndpointID
|
||||
}
|
||||
mpConferenceGlobalAudioMixTableIndex OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An arbitrary index to this table. This index is one for the
|
||||
first participant for every given conference. It is
|
||||
incremented by one for each subsequent participant of the
|
||||
same conference. The last index for a particular conference
|
||||
is equal to the number of participants for that conference."
|
||||
::= { mpConferenceGlobalAudioMixTableEntry 1 }
|
||||
|
||||
mpConferenceGlobalAudioMixTerminalIdentifier OBJECT-TYPE
|
||||
SYNTAX MmEndpointID
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The H.323 id of this participant as described in ITU-T H.323V2
|
||||
specification."
|
||||
::= { mpConferenceGlobalAudioMixTableEntry 2 }
|
||||
|
||||
mpConferenceGlobalVideoMixTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF
|
||||
MpConferenceGlobalVideoMixTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains information about conference
|
||||
participants that are present in a global video mix.
|
||||
It is a list of participant entries. The number of entries
|
||||
equals to the sum of all video mix participants in all
|
||||
conferences."
|
||||
::= { mpConference 4 }
|
||||
mpConferenceGlobalVideoMixTableEntry OBJECT-TYPE
|
||||
SYNTAX MpConferenceGlobalVideoMixTableEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"It contains objects that describe the participants."
|
||||
INDEX { mpConferenceConferenceId,
|
||||
mpConferenceGlobalVideoMixTableIndex }
|
||||
::= { mpConferenceGlobalVideoMixTable 1 }
|
||||
MpConferenceGlobalVideoMixTableEntry ::=
|
||||
SEQUENCE {
|
||||
mpConferenceGlobalVideoMixTableIndex
|
||||
Integer32,
|
||||
mpConferenceGlobalVideoMixTerminalIdentifier
|
||||
MmEndpointID
|
||||
}
|
||||
mpConferenceGlobalVideoMixTableIndex OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An arbitrary index to this table. This index is one for the
|
||||
first participant for every given conference. It is
|
||||
incremented by one for each subsequent participant of the
|
||||
same conference. The last index for a particular conference
|
||||
is equal to the number of participants for that conference."
|
||||
::= { mpConferenceGlobalVideoMixTableEntry 1 }
|
||||
mpConferenceGlobalVideoMixTerminalIdentifier OBJECT-TYPE
|
||||
SYNTAX MmEndpointID
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The H.323 id of this participant as described in ITU-T
|
||||
H.323V2 specification."
|
||||
::= { mpConferenceGlobalVideoMixTableEntry 2 }
|
||||
|
||||
|
||||
-- conformance; stating the mandatory requirements for the MIB
|
||||
--
|
||||
-- CONFORMANCE
|
||||
--
|
||||
mpMIBConformance OBJECT IDENTIFIER ::= { h323MP 3 }
|
||||
mpMIBGroups OBJECT IDENTIFIER ::= { mpMIBConformance 1 }
|
||||
|
||||
--
|
||||
-- Groups for Conformance
|
||||
--
|
||||
mpConfigGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
mpConfigMaxAudioMixCount,
|
||||
mpConfigMaxVideoMixCount
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"."
|
||||
::= { mpMIBGroups 1 }
|
||||
mpConferenceGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
mpConferenceConferenceId,
|
||||
mpConferenceAudioNoiseThreshold,
|
||||
mpConferenceLipSyncEnable,
|
||||
mpConferenceParticipantsTableIndex,
|
||||
mpConferenceParticipantsEndpointId,
|
||||
mpConferenceParticipantsTransmitAudioState,
|
||||
mpConferenceParticipantsReceiveAudioState,
|
||||
mpConferenceParticipantsTransmitVideoState,
|
||||
mpConferenceParticipantsReceiveVideoState,
|
||||
mpConferenceParticipantsLoudnessMeasurement,
|
||||
mpConferenceParticipantsVoiceActivity,
|
||||
mpConferenceParticipantsInputAudioGain,
|
||||
mpConferenceParticipantsOutputAudioGain,
|
||||
mpConferenceParticipantsMaxAudioEncoderPayloadSize,
|
||||
mpConferenceParticipantsMaxAudioDecoderPayloadSize,
|
||||
mpConferenceParticipantsTotalPacketsTransmitted,
|
||||
mpConferenceParticipantsTotalPacketsReceived,
|
||||
mpConferenceParticipantsLateAudioPacketsDropped,
|
||||
mpConferenceParticipantsReceivedSilencePackets,
|
||||
mpConferenceParticipantsSilencePacketsGenerated,
|
||||
mpConferenceParticipantsVideoFrameRate,
|
||||
mpConferenceParticipantsVideoResolution,
|
||||
mpConferenceParticipantsFullPictureCounter,
|
||||
mpConferenceGlobalAudioMixTableIndex,
|
||||
mpConferenceGlobalAudioMixTerminalIdentifier,
|
||||
mpConferenceGlobalVideoMixTableIndex,
|
||||
mpConferenceGlobalVideoMixTerminalIdentifier
|
||||
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"."
|
||||
::= { mpMIBGroups 2 }
|
||||
|
||||
mpMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The set of objects required for compliance."
|
||||
MODULE
|
||||
MANDATORY-GROUPS { mpConfigGroup, mpConferenceGroup }
|
||||
::= { mpMIBConformance 2 }
|
||||
|
||||
END
|
919
mibs/nec/MP-NETWATCH-MIB
Normal file
919
mibs/nec/MP-NETWATCH-MIB
Normal file
@ -0,0 +1,919 @@
|
||||
-- ***************************************************************************************
|
||||
-- FileName :mpNetWatchVRMIB.my
|
||||
-- Description :MultiMedia Platform private MIB
|
||||
-- Revision History :
|
||||
-- Ver. mark date
|
||||
-- 01.00 **** 12/26/2001
|
||||
--
|
||||
-- ***************************************************************************************
|
||||
--
|
||||
|
||||
|
||||
|
||||
MP-NETWATCH-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
|
||||
TimeTicks, IpAddress FROM RFC1155-SMI
|
||||
|
||||
OBJECT-TYPE
|
||||
FROM RFC-1212
|
||||
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215;
|
||||
|
||||
org OBJECT IDENTIFIER ::= { iso 3 }
|
||||
dod OBJECT IDENTIFIER ::= { org 6 }
|
||||
internet OBJECT IDENTIFIER ::= { dod 1 }
|
||||
private OBJECT IDENTIFIER ::= { internet 4 }
|
||||
enterprises OBJECT IDENTIFIER ::= { private 1 }
|
||||
nec OBJECT IDENTIFIER ::= { enterprises 119}
|
||||
nec-mib OBJECT IDENTIFIER ::= { nec 2 }
|
||||
necProductDepend OBJECT IDENTIFIER ::= { nec-mib 3 }
|
||||
datax-mib OBJECT IDENTIFIER ::= { necProductDepend 3 }
|
||||
mmpf-mib OBJECT IDENTIFIER ::= { datax-mib 13 }
|
||||
|
||||
mpInterface OBJECT IDENTIFIER ::= { mmpf-mib 103 }
|
||||
mpNetwatch OBJECT IDENTIFIER ::= { mmpf-mib 132 }
|
||||
mpNetping OBJECT IDENTIFIER ::= { mmpf-mib 133 }
|
||||
--
|
||||
-- Net-Watch Private MIB
|
||||
--
|
||||
|
||||
mpNetWatchTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpNetWatchEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table type object of NetWatch infomation"
|
||||
::= { mpNetwatch 1 }
|
||||
|
||||
mpNetWatchEntry OBJECT-TYPE
|
||||
SYNTAX MpNetWatchEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table entry of mpNetWatchTable."
|
||||
INDEX { mpNetWatchID }
|
||||
::= { mpNetWatchTable 1 }
|
||||
|
||||
MpNetWatchEntry ::=
|
||||
SEQUENCE {
|
||||
mpNetWatchID
|
||||
INTEGER,
|
||||
mpNetWatchVPNID
|
||||
INTEGER,
|
||||
mpNetWatchEntryStatus
|
||||
INTEGER,
|
||||
mpNetWatchAction
|
||||
INTEGER,
|
||||
mpNetWatchNetworkAddr1
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask1
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr2
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask2
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr3
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask3
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr4
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask4
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr5
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask5
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr6
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask6
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr7
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask7
|
||||
IpAddress,
|
||||
mpNetWatchNetworkAddr8
|
||||
IpAddress,
|
||||
mpNetWatchSubNetMask8
|
||||
IpAddress,
|
||||
mpNetWatchifIndex1
|
||||
INTEGER,
|
||||
mpNetWatchifIndex2
|
||||
INTEGER,
|
||||
mpNetWatchifIndex3
|
||||
INTEGER,
|
||||
mpNetWatchifIndex4
|
||||
INTEGER,
|
||||
mpNetWatchifIndex5
|
||||
INTEGER,
|
||||
mpNetWatchifIndex6
|
||||
INTEGER,
|
||||
mpNetWatchifIndex7
|
||||
INTEGER,
|
||||
mpNetWatchifIndex8
|
||||
INTEGER,
|
||||
mpNetWatchifIndex9
|
||||
INTEGER,
|
||||
mpNetWatchifIndex10
|
||||
INTEGER,
|
||||
mpNetWatchifIndex11
|
||||
INTEGER,
|
||||
mpNetWatchifIndex12
|
||||
INTEGER,
|
||||
mpNetWatchifIndex13
|
||||
INTEGER,
|
||||
mpNetWatchifIndex14
|
||||
INTEGER,
|
||||
mpNetWatchifIndex15
|
||||
INTEGER,
|
||||
mpNetWatchifIndex16
|
||||
INTEGER
|
||||
}
|
||||
|
||||
--NetWatch ID
|
||||
mpNetWatchID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a net-watch(Net-watch ID)."
|
||||
-- Net-watch ID<49><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 1 }
|
||||
|
||||
-- VPN ID
|
||||
mpNetWatchVPNID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a VPN(VPN-ID)."
|
||||
-- VPN-ID<49><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 2 }
|
||||
|
||||
--Netwatch Entry Status
|
||||
mpNetWatchEntryStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2),
|
||||
retry(3)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a net-watch Status."
|
||||
-- NetWatch ID<49><44><EFBFBD><EFBFBD>Status<75><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 3 }
|
||||
|
||||
--Port Admin Contorol Action Type
|
||||
mpNetWatchAction OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
down(1),
|
||||
up(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a Port Admin Contorol Type,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Port Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(Up/Down)<29><EFBFBD>Object
|
||||
-- Port<72>̓o<CC93>^<5E><><EFBFBD>Ȃ<EFBFBD><C882>ꍇ<EFBFBD>́A0<41><30><EFBFBD>Ԃ<EFBFBD><D482>܂<EFBFBD>
|
||||
::= { mpNetWatchEntry 4 }
|
||||
|
||||
|
||||
-- <20>Ď<EFBFBD><C48E>Ώۃl<DB83>b<EFBFBD>g<EFBFBD><67><EFBFBD>[<5B>N<EFBFBD>A<EFBFBD>h<EFBFBD><68><EFBFBD>X
|
||||
mpNetWatchNetworkAddr1 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 5 }
|
||||
|
||||
mpNetWatchSubNetMask1 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 6 }
|
||||
|
||||
mpNetWatchNetworkAddr2 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 7 }
|
||||
|
||||
mpNetWatchSubNetMask2 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 8 }
|
||||
|
||||
mpNetWatchNetworkAddr3 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 9 }
|
||||
|
||||
mpNetWatchSubNetMask3 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 10 }
|
||||
|
||||
mpNetWatchNetworkAddr4 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 11 }
|
||||
|
||||
mpNetWatchSubNetMask4 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 12 }
|
||||
|
||||
mpNetWatchNetworkAddr5 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 13 }
|
||||
|
||||
mpNetWatchSubNetMask5 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 14 }
|
||||
|
||||
mpNetWatchNetworkAddr6 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 15 }
|
||||
|
||||
mpNetWatchSubNetMask6 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 16 }
|
||||
|
||||
mpNetWatchNetworkAddr7 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 17 }
|
||||
|
||||
mpNetWatchSubNetMask7 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 18 }
|
||||
|
||||
mpNetWatchNetworkAddr8 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Network Address. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 19 }
|
||||
|
||||
mpNetWatchSubNetMask8 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Subnet Mask. Its value is
|
||||
significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetWatchEntry 20 }
|
||||
|
||||
--Admin Change Port
|
||||
mpNetWatchifIndex1 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 21 }
|
||||
|
||||
mpNetWatchifIndex2 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 22 }
|
||||
|
||||
mpNetWatchifIndex3 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 23 }
|
||||
|
||||
mpNetWatchifIndex4 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 24 }
|
||||
|
||||
mpNetWatchifIndex5 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 25 }
|
||||
|
||||
mpNetWatchifIndex6 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 26 }
|
||||
|
||||
mpNetWatchifIndex7 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 27 }
|
||||
|
||||
mpNetWatchifIndex8 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 28 }
|
||||
|
||||
mpNetWatchifIndex9 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 29 }
|
||||
|
||||
mpNetWatchifIndex10 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 30 }
|
||||
|
||||
mpNetWatchifIndex11 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 31 }
|
||||
|
||||
mpNetWatchifIndex12 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 32 }
|
||||
|
||||
mpNetWatchifIndex13 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 33 }
|
||||
|
||||
mpNetWatchifIndex14 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 34 }
|
||||
|
||||
mpNetWatchifIndex15 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 35 }
|
||||
|
||||
mpNetWatchifIndex16 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when watched all network address is failured."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetWatchEntry 36 }
|
||||
|
||||
|
||||
--
|
||||
-- NetWatch<63><68><EFBFBD>ԕω<D495>
|
||||
--
|
||||
mpNetWatchStatusTimeStamp OBJECT IDENTIFIER ::= { mpNetwatch 2 }
|
||||
|
||||
mpNetWatchStatusLastChange OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object indicates the the time which configuration of
|
||||
NetWatch ID status is changed."
|
||||
--<2D>Ď<EFBFBD><C48E>Ώ<EFBFBD>Network Address<73><73><EFBFBD><EFBFBD><EFBFBD>Q<EFBFBD>E<EFBFBD><45><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD><EFBFBD>Ə<EFBFBD><C68F>ԕω<D495><CF89><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
|
||||
--<2D>ω<EFBFBD><CF89><EFBFBD><EFBFBD>_<EFBFBD><5F>TimeTicks<6B><73><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD><EFBFBD><EFBFBD>B
|
||||
|
||||
::= { mpNetWatchStatusTimeStamp 1 }
|
||||
|
||||
|
||||
--
|
||||
-- Net-Ping Private MIB
|
||||
--
|
||||
|
||||
mpNetPingTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF MpNetPingEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table type object of NetPing infomation."
|
||||
::= { mpNetping 1 }
|
||||
|
||||
mpNetPingEntry OBJECT-TYPE
|
||||
SYNTAX MpNetPingEntry
|
||||
ACCESS not-accessible
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"This is the table entry of mpNetPingTable."
|
||||
INDEX { mpNetPingID }
|
||||
::= { mpNetPingTable 1 }
|
||||
|
||||
MpNetPingEntry ::=
|
||||
SEQUENCE {
|
||||
mpNetPingID
|
||||
INTEGER,
|
||||
mpNetPingVPNID
|
||||
INTEGER,
|
||||
mpNetPingEntryStatus
|
||||
INTEGER,
|
||||
mpNetPingAction
|
||||
INTEGER,
|
||||
mpNetPingDestIPAddr1
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr2
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr3
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr4
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr5
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr6
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr7
|
||||
IpAddress,
|
||||
mpNetPingDestIPAddr8
|
||||
IpAddress,
|
||||
mpNetPingifIndex1
|
||||
INTEGER,
|
||||
mpNetPingifIndex2
|
||||
INTEGER,
|
||||
mpNetPingifIndex3
|
||||
INTEGER,
|
||||
mpNetPingifIndex4
|
||||
INTEGER,
|
||||
mpNetPingifIndex5
|
||||
INTEGER,
|
||||
mpNetPingifIndex6
|
||||
INTEGER,
|
||||
mpNetPingifIndex7
|
||||
INTEGER,
|
||||
mpNetPingifIndex8
|
||||
INTEGER,
|
||||
mpNetPingifIndex9
|
||||
INTEGER,
|
||||
mpNetPingifIndex10
|
||||
INTEGER,
|
||||
mpNetPingifIndex11
|
||||
INTEGER,
|
||||
mpNetPingifIndex12
|
||||
INTEGER,
|
||||
mpNetPingifIndex13
|
||||
INTEGER,
|
||||
mpNetPingifIndex14
|
||||
INTEGER,
|
||||
mpNetPingifIndex15
|
||||
INTEGER,
|
||||
mpNetPingifIndex16
|
||||
INTEGER
|
||||
}
|
||||
|
||||
--NetPing ID
|
||||
mpNetPingID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a net-Ping(Net-Ping ID)."
|
||||
-- Net-Ping ID<49><EFBFBD>Object
|
||||
::= { mpNetPingEntry 1 }
|
||||
|
||||
-- VPN ID
|
||||
mpNetPingVPNID OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a VPN(VPN-ID)."
|
||||
-- VPN-ID<49><EFBFBD>Object
|
||||
::= { mpNetPingEntry 2 }
|
||||
|
||||
--NetPing Entry Status
|
||||
mpNetPingEntryStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(1),
|
||||
down(2),
|
||||
retry(3)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a net-Ping Status."
|
||||
-- Net-Ping ID<49><44><EFBFBD><EFBFBD>Status<75><EFBFBD>Object
|
||||
::= { mpNetPingEntry 3 }
|
||||
|
||||
--Port Admin Contorol Action Type
|
||||
mpNetPingAction OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
down(1),
|
||||
up(2)
|
||||
}
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a Port Admin Contorol Type,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Port Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(Up/Down)<29><EFBFBD>Object
|
||||
::= { mpNetPingEntry 4 }
|
||||
|
||||
-- Ping<6E>Ď<EFBFBD><C48E><EFBFBD><EFBFBD><EFBFBD>IP <20>A<EFBFBD>h<EFBFBD><68><EFBFBD>X
|
||||
mpNetPingDestIPAddr1 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 5 }
|
||||
|
||||
mpNetPingDestIPAddr2 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 6 }
|
||||
|
||||
mpNetPingDestIPAddr3 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 7 }
|
||||
|
||||
mpNetPingDestIPAddr4 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 8 }
|
||||
|
||||
mpNetPingDestIPAddr5 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 9 }
|
||||
|
||||
mpNetPingDestIPAddr6 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 10 }
|
||||
|
||||
mpNetPingDestIPAddr7 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 11 }
|
||||
|
||||
mpNetPingDestIPAddr8 OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"ipv4 Address of watched Destination IP Address by ping send.
|
||||
Its value is significant only when be indicated subject to watch,
|
||||
otherwise it should return a value of 0."
|
||||
::= { mpNetPingEntry 12 }
|
||||
|
||||
--Admin Change Port
|
||||
mpNetPingifIndex1 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 13 }
|
||||
|
||||
mpNetPingifIndex2 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 14 }
|
||||
|
||||
mpNetPingifIndex3 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 15 }
|
||||
|
||||
mpNetPingifIndex4 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 16 }
|
||||
|
||||
mpNetPingifIndex5 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 17 }
|
||||
|
||||
mpNetPingifIndex6 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 18 }
|
||||
|
||||
mpNetPingifIndex7 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 19 }
|
||||
|
||||
mpNetPingifIndex8 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 20 }
|
||||
|
||||
mpNetPingifIndex9 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 21 }
|
||||
|
||||
mpNetPingifIndex10 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 22 }
|
||||
|
||||
mpNetPingifIndex11 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 23 }
|
||||
|
||||
mpNetPingifIndex12 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 24 }
|
||||
|
||||
mpNetPingifIndex13 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 25 }
|
||||
|
||||
mpNetPingifIndex14 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 26 }
|
||||
|
||||
mpNetPingifIndex15 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 27 }
|
||||
|
||||
mpNetPingifIndex16 OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION
|
||||
"A unique value to identify a object of Port Admin change,
|
||||
when it is failured in ping for all destination IP Address of ping Entry."
|
||||
-- <20><><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD>Admin<69>𐧌䂳<F090A78C><E482B3><EFBFBD><EFBFBD>Port<72><74>ifIndex<65><EFBFBD>Object
|
||||
::= { mpNetPingEntry 28 }
|
||||
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- NetPing<6E><67><EFBFBD>ԕω<D495>
|
||||
--
|
||||
mpNetPingStatusTimeStamp OBJECT IDENTIFIER ::= { mpNetping 2 }
|
||||
|
||||
mpNetPingStatusLastChange OBJECT-TYPE
|
||||
SYNTAX TimeTicks
|
||||
ACCESS read-only
|
||||
STATUS mandatory
|
||||
DESCRIPTION "This object indicates the the time which configuration of
|
||||
NetPing ID status is changed."
|
||||
--Ping<6E>Ď<EFBFBD><C48E><EFBFBD><EFBFBD><EFBFBD>IP<49>A<EFBFBD>h<EFBFBD><68><EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD><EFBFBD>Q<EFBFBD>E<EFBFBD><45><EFBFBD>Q<EFBFBD><51><EFBFBD><EFBFBD><EFBFBD>ƂȂ<C682><C882>A<EFBFBD><41><EFBFBD><EFBFBD><EFBFBD>܂ł̌o<CC8C>H<EFBFBD><48><EFBFBD>ԕω<D495><CF89><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
|
||||
--<2D>ω<EFBFBD><CF89><EFBFBD><EFBFBD>_<EFBFBD><5F>TimeTicks<6B><73><EFBFBD>ݒ肳<DD92><E882B3><EFBFBD><EFBFBD><EFBFBD>B
|
||||
|
||||
::= { mpNetPingStatusTimeStamp 1 }
|
||||
|
||||
|
||||
|
||||
END
|
||||
|
||||
|
61
mibs/nec/MP-TRAP
Normal file
61
mibs/nec/MP-TRAP
Normal file
@ -0,0 +1,61 @@
|
||||
-- ************************************************************************************************
|
||||
-- FileName :mpAlmTRAP.my
|
||||
-- Description :MultiMedia Platform private MIB(<28><><EFBFBD>Q<EFBFBD>Ǘ<EFBFBD> TRAP<41><50><EFBFBD>`<60>t<EFBFBD>@<40>C<EFBFBD><43>)
|
||||
-- Revision History :
|
||||
-- Ver. mark date
|
||||
-- 01.01 @001 12/21/1998
|
||||
--
|
||||
-- ************************************************************************************************
|
||||
--
|
||||
-- <20><><EFBFBD>Q<EFBFBD>Ǘ<EFBFBD><C797>Œ<EFBFBD><C592>`<60><><EFBFBD><EFBFBD>TRAP<41><50>MIB<49>d<EFBFBD>l<EFBFBD><6C>
|
||||
--
|
||||
|
||||
|
||||
MP-TRAP DEFINITIONS ::= BEGIN
|
||||
|
||||
-- specific-trap<61>̒l<CC92>́A<CD81><41><EFBFBD><EFBFBD>3<EFBFBD><33><EFBFBD>i<EFBFBD>@<40>\<5C>u<EFBFBD><75><EFBFBD>b<EFBFBD>N<EFBFBD>P<EFBFBD>ʂ̒l<CC92>j<EFBFBD><6A>138<33>ƒ<EFBFBD><C692>`<60><><EFBFBD>A
|
||||
-- <20><><EFBFBD><EFBFBD>3<EFBFBD><33><EFBFBD>iTRAP<41>R<EFBFBD>[<5B>h<EFBFBD>l<EFBFBD>j<EFBFBD><6A>001<30><31><EFBFBD>菇<EFBFBD>ɒ<EFBFBD><C992>`<60><><EFBFBD><EFBFBD><EFBFBD>B
|
||||
|
||||
-- 4<><34><EFBFBD>ڂ͔<DA82><CD94><EFBFBD><EFBFBD>E<EFBFBD><45><EFBFBD><EFBFBD><EFBFBD>ɐU<C990>蕪<EFBFBD><E895AA><EFBFBD><EFBFBD><EFBFBD>B0=<3D><><EFBFBD><EFBFBD><EFBFBD>@1=<3D><><EFBFBD><EFBFBD>
|
||||
|
||||
IMPORTS
|
||||
TRAP-TYPE
|
||||
FROM RFC-1215
|
||||
mpEventTimeStamp, mpEventSeverity, mpEventDescription
|
||||
FROM MMPF-MIB;
|
||||
|
||||
-- 98/12/15 YI mmpf => mmpf-mib CHG start @001
|
||||
-- sysObjectID
|
||||
necProduct OBJECT IDENTIFIER ::= { nec 1 }
|
||||
datax OBJECT IDENTIFIER ::= { necProduct 3 }
|
||||
mmpf OBJECT IDENTIFIER ::= { datax 13 }
|
||||
mmn9110 OBJECT IDENTIFIER ::= { mmpf 1 }
|
||||
mmn9120 OBJECT IDENTIFIER ::= { mmpf 2 }
|
||||
-- [sysObjectID] MM-Node9110/MM-Node9120
|
||||
-- mmn9110 OBJECT IDENTIFIER ::= { nec necProduct(1) datax(3) mmpf(13) mmn9110(1) }
|
||||
-- mmn9120 OBJECT IDENTIFIER ::= { nec necProduct(1) datax(3) mmpf(13) mmn9110(2) }
|
||||
|
||||
|
||||
-- mmn9110 OBJECT IDENTIFIER ::= { nec necProduct(1) datax(3) mmpf(13) mmn9110(1) }
|
||||
-- mmn9120 OBJECT IDENTIFIER ::= { nec necProduct(1) datax(3) mmpf(13) mmn9110(2) }
|
||||
-- 98/12/15 YI mmpf => mmpf-mib CHG end
|
||||
|
||||
|
||||
--
|
||||
-- <20><><EFBFBD>Q<EFBFBD>Ǘ<EFBFBD><C797>Ɋւ<C98A><D682><EFBFBD>TRAP
|
||||
--
|
||||
|
||||
-- <20>A<EFBFBD><41><EFBFBD>[<5B><><EFBFBD>Ď<EFBFBD><C48E>W
|
||||
alarmReCollect TRAP-TYPE
|
||||
ENTERPRISE { mmn9110 }
|
||||
VARIABLES { mpEventTimeStamp,
|
||||
mpEventSeverity,
|
||||
mpEventDescription }
|
||||
DESCRIPTION
|
||||
"<22>A<EFBFBD><41><EFBFBD>[<5B><><EFBFBD>Ď<EFBFBD><C48E>W<EFBFBD><57><EFBFBD>ʒm<CA92><6D><EFBFBD><EFBFBD><EFBFBD>B
|
||||
<20>b<EFBFBD>k<EFBFBD>h<EFBFBD>^<5E>m<EFBFBD>l<EFBFBD>r<EFBFBD><72><EFBFBD><EFBFBD><EFBFBD>̃A<CC83><41><EFBFBD>[<5B><><EFBFBD>Ď<EFBFBD><C48E>W<EFBFBD>R<EFBFBD>}<7D><><EFBFBD>h<EFBFBD>y<EFBFBD>эĊJ<C48A><4A><EFBFBD>̃A<CC83><41><EFBFBD>[<5B><><EFBFBD>Ď<EFBFBD><C48E>W<EFBFBD><57>
|
||||
<20>s<EFBFBD><73><EFBFBD><EFBFBD><EFBFBD>ꍇ<EFBFBD>ɒʒm<CA92><6D><EFBFBD><EFBFBD><EFBFBD>B"
|
||||
::= 1380001
|
||||
|
||||
|
||||
END
|
8044
mibs/nec/NEC-MIB
Normal file
8044
mibs/nec/NEC-MIB
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user