Commit version 24.12.13800
This commit is contained in:
@ -66,6 +66,14 @@ ifJnx MODULE-IDENTITY
|
||||
REVISION "202001010000Z" -- 01 Jan, 2020
|
||||
DESCRIPTION
|
||||
"New object ifJnxInputErrors added"
|
||||
REVISION "202009190000Z" -- 19 Sept, 2020
|
||||
DESCRIPTION
|
||||
"Adding ifJnxL2Errors notification and
|
||||
adding ifJnxInL2ChanErrors, ifChassisFpc, ifChassisPic,
|
||||
ifChassisPort in ifJnxL2Errors notification"
|
||||
REVISION "202209010000Z" -- 1 st Nov, 2022
|
||||
DESCRIPTION
|
||||
"Adding new mib table ifJnxTrafficStatsTable"
|
||||
::= { jnxMibs 3 }
|
||||
|
||||
|
||||
@ -132,7 +140,8 @@ ifJnx MODULE-IDENTITY
|
||||
ifJnxFcsErrors Counter64,
|
||||
ifHCIn1SecOctets CounterBasedGauge64,
|
||||
ifHCOut1SecOctets CounterBasedGauge64,
|
||||
ifJnxInputErrors Counter64
|
||||
ifJnxInputErrors Counter64,
|
||||
ifJnxOutEcnMarkedPackets Counter64
|
||||
}
|
||||
|
||||
ifIn1SecRate OBJECT-TYPE
|
||||
@ -467,6 +476,14 @@ ifJnx MODULE-IDENTITY
|
||||
Same as ifJnxInErrors - ifJnxInL3Incompletes"
|
||||
::= { ifJnxEntry 36 }
|
||||
|
||||
ifJnxOutEcnMarkedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ECN Marked packets: The number of explicit congestion notification packets on output queue"
|
||||
::= { ifJnxEntry 37 }
|
||||
|
||||
--
|
||||
-- This table augments ifTable to map to Chassis MIB tables
|
||||
--
|
||||
@ -627,6 +644,20 @@ ifJnx MODULE-IDENTITY
|
||||
of ifJnxCrcErrors or ifJnxFcsErrors increases."
|
||||
|
||||
::= { ifJnxNotificationPrefix 1 }
|
||||
|
||||
ifJnxL2Errors NOTIFICATION-TYPE
|
||||
OBJECTS {
|
||||
ifJnxInL2ChanErrors,
|
||||
ifChassisFpc,
|
||||
ifChassisPic,
|
||||
ifChassisPort
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A ifJnxL2Errors notification is sent when the value
|
||||
of ifJnxInL2ChanErrors increases."
|
||||
|
||||
::= { ifJnxNotificationPrefix 2 }
|
||||
|
||||
--
|
||||
-- This table augments ifTable
|
||||
@ -1176,4 +1207,329 @@ ifJnx MODULE-IDENTITY
|
||||
the nominal bandwidth."
|
||||
::= { ifJnxMediaEntry 12 }
|
||||
|
||||
--
|
||||
-- This table augments ifTable
|
||||
--
|
||||
ifJnxTrafficStatsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IfJnxTrafficStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains additional traffic statistics objects
|
||||
for logical interface."
|
||||
::= { ifJnx 6 }
|
||||
|
||||
ifJnxTrafficStatsEntry OBJECT-TYPE
|
||||
SYNTAX IfJnxTrafficStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry containing additional traffic statistics
|
||||
for an interface."
|
||||
INDEX { ifIndex }
|
||||
::= { ifJnxTrafficStatsTable 1 }
|
||||
|
||||
IfJnxTrafficStatsEntry ::=
|
||||
SEQUENCE {
|
||||
ifJnxLocalV4InPkts Counter64,
|
||||
ifJnxLocalV4InOctets Counter64,
|
||||
ifJnxLocalV4OutPkts Counter64,
|
||||
ifJnxLocalV4OutOctets Counter64,
|
||||
ifJnxTransitV4InPkts Counter64,
|
||||
ifJnxTransitV4InOctets Counter64,
|
||||
ifJnxTransitV4OutPkts Counter64,
|
||||
ifJnxTransitV4OutOctets Counter64,
|
||||
ifJnxTransitV4In1SecRate CounterBasedGauge64,
|
||||
ifJnxTransitV4In1SecOctets CounterBasedGauge64,
|
||||
ifJnxTransitV4Out1SecRate CounterBasedGauge64,
|
||||
ifJnxTransitV4Out1SecOctets CounterBasedGauge64,
|
||||
ifJnxTrafficV4InPkts Counter64,
|
||||
ifJnxTrafficV4InOctets Counter64,
|
||||
ifJnxTrafficV4OutPkts Counter64,
|
||||
ifJnxTrafficV4OutOctets Counter64,
|
||||
ifJnxLocalV6InPkts Counter64,
|
||||
ifJnxLocalV6InOctets Counter64,
|
||||
ifJnxLocalV6OutPkts Counter64,
|
||||
ifJnxLocalV6OutOctets Counter64,
|
||||
ifJnxTransitV6InPkts Counter64,
|
||||
ifJnxTransitV6InOctets Counter64,
|
||||
ifJnxTransitV6OutPkts Counter64,
|
||||
ifJnxTransitV6OutOctets Counter64,
|
||||
ifJnxTransitV6In1SecRate CounterBasedGauge64,
|
||||
ifJnxTransitV6In1SecOctets CounterBasedGauge64,
|
||||
ifJnxTransitV6Out1SecRate CounterBasedGauge64,
|
||||
ifJnxTransitV6Out1SecOctets CounterBasedGauge64,
|
||||
ifJnxTrafficV6InPkts Counter64,
|
||||
ifJnxTrafficV6InOctets Counter64,
|
||||
ifJnxTrafficV6OutPkts Counter64,
|
||||
ifJnxTrafficV6OutOctets Counter64
|
||||
}
|
||||
ifJnxLocalV4InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 local packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 1 }
|
||||
|
||||
ifJnxLocalV4InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 local octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 2 }
|
||||
|
||||
ifJnxLocalV4OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 local packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 3 }
|
||||
|
||||
ifJnxLocalV4OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 local octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 4 }
|
||||
|
||||
ifJnxTransitV4InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 transit packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 5 }
|
||||
|
||||
ifJnxTransitV4InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 transit octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 6 }
|
||||
|
||||
ifJnxTransitV4OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 transit packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 7 }
|
||||
|
||||
ifJnxTransitV4OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 transit octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 8 }
|
||||
|
||||
ifJnxTransitV4In1SecRate OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of bits per second (bps), delivered by
|
||||
this (sub-)layer to its next higher (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 9 }
|
||||
|
||||
ifJnxTransitV4In1SecOctets OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of octets per second (Bps, Bytes per
|
||||
second), delivered by this (sub-)layer to its next
|
||||
higher (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 10 }
|
||||
|
||||
ifJnxTransitV4Out1SecRate OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of bits per second (bps), delivered by
|
||||
this (sub-)layer to its next lower (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 11 }
|
||||
|
||||
ifJnxTransitV4Out1SecOctets OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of octets per second (Bps, Bytes per
|
||||
second), delivered by this (sub-)layer to its next
|
||||
lower (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 12 }
|
||||
|
||||
ifJnxTrafficV4InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 13 }
|
||||
|
||||
ifJnxTrafficV4InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 14 }
|
||||
|
||||
ifJnxTrafficV4OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 15 }
|
||||
|
||||
ifJnxTrafficV4OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv4 octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 16 }
|
||||
|
||||
ifJnxLocalV6InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 local packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 17 }
|
||||
|
||||
ifJnxLocalV6InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 local octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 18 }
|
||||
|
||||
ifJnxLocalV6OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 local packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 19 }
|
||||
|
||||
ifJnxLocalV6OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 local octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 20 }
|
||||
|
||||
ifJnxTransitV6InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 transit packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 21 }
|
||||
|
||||
ifJnxTransitV6InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 transit octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 22 }
|
||||
|
||||
ifJnxTransitV6OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 transit packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 23 }
|
||||
|
||||
ifJnxTransitV6OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 transit octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 24 }
|
||||
|
||||
ifJnxTransitV6In1SecRate OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of bits per second (bps), delivered by
|
||||
this (sub-)layer to its next higher (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 25 }
|
||||
|
||||
ifJnxTransitV6In1SecOctets OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of octets per second (Bps, Bytes per
|
||||
second), delivered by this (sub-)layer to its next
|
||||
higher (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 26 }
|
||||
|
||||
ifJnxTransitV6Out1SecRate OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of bits per second (bps), delivered by
|
||||
this (sub-)layer to its next lower (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 27 }
|
||||
|
||||
ifJnxTransitV6Out1SecOctets OBJECT-TYPE
|
||||
SYNTAX CounterBasedGauge64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of octets per second (Bps, Bytes per
|
||||
second), delivered by this (sub-)layer to its next
|
||||
lower (sub-)layer."
|
||||
::= { ifJnxTrafficStatsEntry 28 }
|
||||
|
||||
ifJnxTrafficV6InPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 packets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 29 }
|
||||
|
||||
ifJnxTrafficV6InOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 octets received on this interface."
|
||||
::= { ifJnxTrafficStatsEntry 30 }
|
||||
|
||||
ifJnxTrafficV6OutPkts OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 packets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 31 }
|
||||
|
||||
ifJnxTrafficV6OutOctets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total IPv6 octets transmitted out of this interface."
|
||||
::= { ifJnxTrafficStatsEntry 32 }
|
||||
|
||||
END
|
||||
|
Reference in New Issue
Block a user