Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -23,7 +23,7 @@
jnxSvcsMibRoot FROM JUNIPER-SMI;
jnxNatMIB MODULE-IDENTITY
LAST-UPDATED "201007122022Z" -- July 12, 2010"
LAST-UPDATED "202008272022Z" -- August 27, 2020"
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
@ -40,6 +40,13 @@
REVISION "201007122022Z" -- July 12, 2010
DESCRIPTION "Creation Date"
REVISION "202008272022Z" -- August 27, 2020
DESCRIPTION "Added jnxNatSrcNumAddressMapped in jnxSrcNatStatsEntry
and jnxNatPbaPoolName, jnxNatPbaOutOfPortError,
jnxNatPbaMaxNumberOfPortBlocksUsed, jnxNatPbaCurrentNumberOfPortBlocksInUse,
jnxNatPbaPortBlockAllocErrors, jnxNatPbaPortBlockMemAllocErrors,
jnxNatPbaPortBlockLimitExeededErrors in JnxNatPbaStatsEntry."
::= { jnxSvcsMibRoot 1 }
@ -88,7 +95,8 @@
jnxNatSrcNumPortInuse Unsigned32,
jnxNatSrcNumAddressAvail Unsigned32,
jnxNatSrcNumAddressInUse Unsigned32,
jnxNatSrcNumSessions Unsigned32
jnxNatSrcNumSessions Unsigned32,
jnxNatSrcNumAddressMapped Unsigned32
}
@ -193,6 +201,15 @@
::= { jnxSrcNatStatsEntry 8 }
jnxNatSrcNumAddressMapped OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of public addresses mapped"
::= { jnxSrcNatStatsEntry 9 }
-- ***************************************************************
-- NAT Rule Hit Table
-- ***************************************************************
@ -341,6 +358,94 @@
"The number of hits on this NAT Pool"
::= { jnxNatPoolEntry 3 }
-- ***************************************************************
-- NAT PBA Stat Table
-- ***************************************************************
jnxNatPbaStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxNatPbaStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table monitors NAT PBA stats "
::= { jnxNatObjects 4 }
jnxNatPbaStatsEntry OBJECT-TYPE
SYNTAX JnxNatPbaStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"NAT PBA stats entries. It is indexed by the pool index"
INDEX { jnxNatPbaPoolName }
::= { jnxNatPbaStatsTable 1 }
JnxNatPbaStatsEntry ::= SEQUENCE
{
jnxNatPbaPoolName DisplayString,
jnxNatPbaOutOfPortError Unsigned32,
jnxNatPbaMaxNumberOfPortBlocksUsed Unsigned32,
jnxNatPbaCurrentNumberOfPortBlocksInUse Unsigned32,
jnxNatPbaPortBlockAllocErrors Unsigned32,
jnxNatPbaPortBlockMemAllocErrors Unsigned32,
jnxNatPbaPortBlockLimitExeededErrors Unsigned32
}
jnxNatPbaPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NAT PBA Pool name"
::= { jnxNatPbaStatsEntry 1 }
jnxNatPbaOutOfPortError OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of times the out of port error is hit"
::= { jnxNatPbaStatsEntry 2 }
jnxNatPbaMaxNumberOfPortBlocksUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of Max number of blocks used for the pool"
::= { jnxNatPbaStatsEntry 3 }
jnxNatPbaCurrentNumberOfPortBlocksInUse OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of current number of blocks used for the pool"
::= { jnxNatPbaStatsEntry 4 }
jnxNatPbaPortBlockAllocErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of port block allocation errors"
::= { jnxNatPbaStatsEntry 5 }
jnxNatPbaPortBlockMemAllocErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of port block memory allocation errors"
::= { jnxNatPbaStatsEntry 6 }
jnxNatPbaPortBlockLimitExeededErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of port block limit exceeded errors hit"
::= { jnxNatPbaStatsEntry 7 }
-- ***************************************************************
-- NAT Trap definition
-- ***************************************************************