diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/arris/ARRIS-C3-IF-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/arris/ARRIS-C3-IF-MIB')
| -rw-r--r-- | MIBS/arris/ARRIS-C3-IF-MIB | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/MIBS/arris/ARRIS-C3-IF-MIB b/MIBS/arris/ARRIS-C3-IF-MIB new file mode 100644 index 0000000..1f8bb96 --- /dev/null +++ b/MIBS/arris/ARRIS-C3-IF-MIB @@ -0,0 +1,127 @@ +ARRIS-C3-IF-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Integer32 + FROM SNMPv2-SMI + ifEntry + FROM IF-MIB -- RFC2233 + OBJECT-GROUP, MODULE-COMPLIANCE + FROM SNMPv2-CONF + cmtsC3 + FROM ARRIS-MIB; + + cmtsC3IfMIB MODULE-IDENTITY + LAST-UPDATED "200308200000Z" -- 20th August 2003 + ORGANIZATION "Arris International" + CONTACT-INFO + " Network Management + Postal: Arris International. + 4400 Cork Airport Business Park + Cork Airport, Kinsale Road + Cork, Ireland. + Tel: +353 21 7305 800 + Fax: +353 21 4321 972" + + DESCRIPTION + "This MIB manages the proprietary interface + table on the Arris CMTS C3" + ::= { cmtsC3 12 } + + dcxIfObjects OBJECT IDENTIFIER ::= { cmtsC3IfMIB 1 } + + dcxIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF DcxIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Proprietary ifTable additions." + ::= { dcxIfObjects 1 } + + dcxIfEntry OBJECT-TYPE + SYNTAX DcxIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Additional columns to each ifEntry for monitoring + average bit and packet rates per interface." + AUGMENTS { ifEntry } + ::= { dcxIfTable 1 } + + DcxIfEntry ::= SEQUENCE { + dcxIfLoadInterval Unsigned32, + dcxIfInputBitRate Unsigned32, + dcxIfInputPacketRate Unsigned32, + dcxIfOutputBitRate Unsigned32, + dcxIfOutputPacketRate Unsigned32 + } + + dcxIfLoadInterval OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of seconds from 30 to 600 over which + the average input/output bit/packet rate is + calculated for the interface. This is not + writeable for upstream channels that have a + corresponding upstream interface entry. Such + channels will mirror the values on the interface." + ::= { dcxIfEntry 1 } + + dcxIfInputBitRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average bit rate per second received on the + interface over the configured load interval. + If one load interval has not yet passed, this + represents the average bit rate over the + interval so far. Measurements are only made + if the interface is operational and are reset + if the load interval is changed." + ::= { dcxIfEntry 2 } + + dcxIfInputPacketRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average packet rate per second received on the + interface over the configured load interval. + If one load interval has not expired, this + represents the average packet rate over the + interval so far. Measurements are only made + if the interface is operational and are reset + if the load interval is changed." + ::= { dcxIfEntry 3 } + + dcxIfOutputBitRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average bit rate per second sent from the + interface over the configured load interval. + If one load interval has not expired, this + represents the average bit rate over the + interval so far. Measurements are only made + if the interface is operational and are reset + if the load interval is changed." + ::= { dcxIfEntry 4 } + + dcxIfOutputPacketRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average packet rate per second sent from the + interface over the configured load interval. + If one load interval has not expired, this + represents the average packet rate over the + interval so far. Measurements are only made + if the interface is operational and are reset + if the load interval is changed." + ::= { dcxIfEntry 5 } + +END |