Commit version 24.12.13800
This commit is contained in:
@ -10,7 +10,7 @@ PAN-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-IDENTITY,
|
||||
OBJECT-TYPE, NOTIFICATION-TYPE,
|
||||
Integer32
|
||||
Integer32, Counter32
|
||||
FROM SNMPv2-SMI
|
||||
-- MODULE-COMPLIANCE, OBJECT-GROUP
|
||||
-- FROM SNMPv2-CONF
|
||||
@ -31,8 +31,8 @@ PAN-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
CONTACT-INFO "
|
||||
Customer Support
|
||||
Palo Alto Networks
|
||||
4401 Great America Pkwy
|
||||
Santa Clara, CA 95054-1211
|
||||
3000 Tannery Way
|
||||
Santa Clara, CA 95054
|
||||
|
||||
+1 866-898-9087
|
||||
support at paloaltonetworks dot com"
|
||||
@ -150,6 +150,18 @@ PAN-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
DESCRIPTION "
|
||||
Sub-tree for Wildfire monitoring statistics."
|
||||
::= { panCommonObjs 10 }
|
||||
|
||||
panhrStorage OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Sub-tree for common PANOS Storage information."
|
||||
::= { panCommonObjs 12 }
|
||||
|
||||
panpaCluster OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Sub-tree for BB PANOS cluster information."
|
||||
::= { panCommonObjs 13 }
|
||||
|
||||
panGlobalCounters OBJECT-IDENTITY
|
||||
STATUS current
|
||||
@ -377,7 +389,226 @@ PAN-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
"Series Mode for this Palo Alto device."
|
||||
::= { panChassis 2 }
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
-- PANOS panosStorageInfo
|
||||
|
||||
panhrStorage OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Sub-tree for common PAN hr storage information."
|
||||
::= { panCommonObjs 12 }
|
||||
|
||||
panhrStorageTypes OBJECT IDENTIFIER ::= { panhrStorage 1 }
|
||||
|
||||
panhrStorageOther OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used when no other defined
|
||||
type is appropriate."
|
||||
::= { panhrStorageTypes 1 }
|
||||
|
||||
panhrStorageRam OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for RAM."
|
||||
::= { panhrStorageTypes 2 }
|
||||
|
||||
panhrStorageVirtualMemory OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for virtual memory,
|
||||
temporary storage of swapped or paged memory."
|
||||
::= { panhrStorageTypes 3 }
|
||||
|
||||
panhrStorageFixedDisk OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for non-removable
|
||||
rigid rotating magnetic storage devices."
|
||||
::= { panhrStorageTypes 4 }
|
||||
|
||||
panhrStorageRemovableDisk OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for removable rigid
|
||||
rotating magnetic storage devices."
|
||||
::= { panhrStorageTypes 5 }
|
||||
|
||||
panhrStorageFloppyDisk OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for non-rigid rotating
|
||||
magnetic storage devices."
|
||||
::= { panhrStorageTypes 6 }
|
||||
|
||||
panhrStorageCompactDisc OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for read-only rotating
|
||||
optical storage devices."
|
||||
::= { panhrStorageTypes 7 }
|
||||
|
||||
panhrStorageRamDisk OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for a file system that
|
||||
is stored in RAM."
|
||||
::= { panhrStorageTypes 8 }
|
||||
|
||||
panhrStorageFlashMemory OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for flash memory."
|
||||
::= { panhrStorageTypes 9 }
|
||||
|
||||
panhrStorageNetworkDisk OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The storage type identifier used for a
|
||||
networked file system."
|
||||
::= { panhrStorageTypes 10 }
|
||||
|
||||
panhrMemorySize OBJECT-TYPE
|
||||
SYNTAX KBytes
|
||||
UNITS "KBytes"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The amount of physical read-write main memory,
|
||||
typically RAM, contained by the host."
|
||||
::= { panhrStorage 2 }
|
||||
|
||||
panhrStorageTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF panHrStorageEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The (conceptual) table of logical storage areas on
|
||||
the host."
|
||||
::= { panhrStorage 3 }
|
||||
|
||||
panhrStorageEntry OBJECT-TYPE
|
||||
SYNTAX panHrStorageEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry for one logical storage area on
|
||||
the host. As an example, an instance of the
|
||||
panhrStorageType object might be named panhrStorageType.3"
|
||||
INDEX { panhrStorageIndex }
|
||||
::= { panhrStorageTable 1 }
|
||||
|
||||
panHrStorageEntry ::= SEQUENCE {
|
||||
panhrStorageIndex Integer32,
|
||||
panhrStorageType AutonomousType,
|
||||
panhrStorageDescr DisplayString,
|
||||
panhrStorageAllocationUnits Integer32,
|
||||
panhrStorageSize Integer32,
|
||||
panhrStorageUsed Integer32,
|
||||
panhrStorageAvailable Integer32,
|
||||
panhrStorageAllocationFailures Counter32,
|
||||
panhrStorageUsage Integer32,
|
||||
}
|
||||
|
||||
panhrStorageIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A unique value for each logical storage area
|
||||
contained by the host."
|
||||
::= { panhrStorageEntry 1 }
|
||||
|
||||
panhrStorageType OBJECT-TYPE
|
||||
SYNTAX AutonomousType
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The type of storage represented by this entry."
|
||||
::= { panhrStorageEntry 2 }
|
||||
|
||||
panhrStorageDescr OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A description of the type and instance of the storage
|
||||
described by this entry."
|
||||
::= { panhrStorageEntry 3 }
|
||||
|
||||
panhrStorageAllocationUnits OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
UNITS "Bytes"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The size, in bytes, of the data objects allocated
|
||||
from this pool. If this entry is monitoring sectors,
|
||||
blocks, buffers, or packets, for example, this number
|
||||
will commonly be greater than one. Otherwise this
|
||||
number will typically be one."
|
||||
::= { panhrStorageEntry 4 }
|
||||
|
||||
panhrStorageSize OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The size of the storage represented by this entry, in
|
||||
units of panhrStorageAllocationUnits. This object is
|
||||
writable to allow remote configuration of the size of
|
||||
the storage area in those cases where such an
|
||||
operation makes sense and is possible on the
|
||||
underlying system. For example, the amount of main
|
||||
memory allocated to a buffer pool might be modified or
|
||||
the amount of disk space allocated to virtual memory
|
||||
might be modified."
|
||||
::= { panhrStorageEntry 5 }
|
||||
|
||||
panhrStorageUsed OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The amount of the storage represented by this entry
|
||||
that is allocated, in units of
|
||||
panhrStorageAllocationUnits."
|
||||
::= { panhrStorageEntry 6 }
|
||||
|
||||
panhrStorageAvailable OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The amount of the storage represented by this entry
|
||||
that is allocated, in units of
|
||||
panhrStorageAllocationUnits."
|
||||
::= { panhrStorageEntry 7 }
|
||||
|
||||
panhrStorageAllocationFailures OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The number of requests for storage represented by
|
||||
this entry that could not be honored due to not enough
|
||||
storage. It should be noted that as this object has a
|
||||
SYNTAX of Counter32, that it does not have a defined
|
||||
initial value. However, it is recommended that this
|
||||
object be initialized to zero, even though management
|
||||
stations must not depend on such an initialization."
|
||||
::= { panhrStorageEntry 8 }
|
||||
|
||||
panhrStorageUsage OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..100)
|
||||
UNITS "%"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The usage of the storage represented by this entry
|
||||
that is used, in units of percentage."
|
||||
::= { panhrStorageEntry 9 }
|
||||
----------------------------------------------------------------------
|
||||
-- Session
|
||||
|
||||
@ -488,7 +719,96 @@ PAN-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
DESCRIPTION
|
||||
"PethPsePort table"
|
||||
::= { panSession 13 }
|
||||
----------------------------------------------------------------------
|
||||
-- BB cluster
|
||||
|
||||
panPAClusterSummaryEntryNodeid OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterSummaryEntryNodeid cluster summary node id .Values should
|
||||
be between 0 and 100."
|
||||
::= { panpaCluster 1 }
|
||||
|
||||
panPAClusterSummaryEntrymode OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterSummaryEntrymode cluster summary mode."
|
||||
::= { panpaCluster 2 }
|
||||
|
||||
panPAClusterSummaryEntrySerialNumber OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterSummaryEntrySerialNumber serial number."
|
||||
::= { panpaCluster 3 }
|
||||
|
||||
panPAClusterSummaryEntrynodeStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
unknown(0), -- unknown
|
||||
init(1), -- init
|
||||
online(2), -- online
|
||||
degraded(3), -- status degraded
|
||||
failed(4), -- failed
|
||||
suspended(5) -- suspended
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterSummaryEntrynodeStatus status."
|
||||
::= { panpaCluster 4 }
|
||||
|
||||
panPAClusterUtilizationEntrythroughput OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterUtilizationEntrythroughput "
|
||||
::= { panpaCluster 5 }
|
||||
|
||||
panPAClusterUtilizationEntryconnPerSec OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterUtilizationEntryconnPerSec "
|
||||
::= { panpaCluster 6 }
|
||||
|
||||
panPAClusterUtilizationEntrysessions OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterUtilizationEntrysessions "
|
||||
::= { panpaCluster 7 }
|
||||
|
||||
panPAClusterUtilizationEntryLPS OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterUtilizationEntryLPS "
|
||||
::= { panpaCluster 8 }
|
||||
|
||||
panPAClusterLocalSessStatsEntryActive OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterLocalSessStatsEntryActive "
|
||||
::= { panpaCluster 9 }
|
||||
|
||||
panPAClusterLocalSessStatsEntryMax OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"panPAClusterLocalSessStatsEntryMax "
|
||||
::= { panpaCluster 10 }
|
||||
----------------------------------------------------------------------
|
||||
-- VsysTable
|
||||
|
||||
|
Reference in New Issue
Block a user