Fix PanOS Sessions count and add Vsys and other sensors (#11341)

* fix panos sessions and sslproxy

* add test file

* update mibs

* add tests

* test correction

* delete useless line

* correction

* correction mib

* Add additional sensors

* test data

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
mathieu-oui
2020-04-22 08:27:54 +02:00
committed by GitHub
parent 4c14efb375
commit 5c52403dd1
7 changed files with 32592 additions and 4 deletions
+78 -4
View File
@@ -1,6 +1,12 @@
mib: PAN-COMMON-MIB mib: PAN-COMMON-MIB
modules: modules:
sensors: sensors:
pre-cache:
data:
- oid:
- panSessionMax
- panVsysName
- panVsysMaxSessions
state: state:
data: data:
- -
@@ -32,9 +38,77 @@ modules:
count: count:
data: data:
- -
oid: panSession oid: panSessionActive
value: panSessionActive num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.3.{{ $index }}'
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.{{ $index }}' index: 'panSessionActive.{{ $index }}'
group: Sessions
descr: Active Sessions descr: Active Sessions
group: Sessions
high_limit: panSessionMax high_limit: panSessionMax
-
oid: panSessionActiveSslProxy
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.7.{{ $index }}'
index: 'panSessionActiveSslProxy.{{ $index }}'
descr: Active Sessions in SSL Proxy
group: Sessions
high_limit: panSessionMax
-
oid: panSessionActiveTcp
value: panSessionActiveTcp
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.4.{{ $index }}'
index: 'panSessionActiveTcp.{{ $index }}'
descr: Active TCP Sessions
group: Sessions
high_limit: panSessionMax
-
oid: panSessionActiveUdp
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.5.{{ $index }}'
index: 'panSessionActiveUdp.{{ $index }}'
descr: Active UDP Sessions
group: Sessions
high_limit: panSessionMax
-
oid: panVsysActiveSessions
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.9.1.4.{{ $index }}'
index: 'panVsysActiveSessions.{{ $index }}'
descr: Active Sessions
group: '{{ $panVsysName }}'
high_limit: panVsysMaxSessions
-
oid: panVsysActiveTcpCps
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.9.1.6.{{ $index }}'
index: 'panVsysActiveTcpCps.{{ $index }}'
descr: TCP Connections Per Second
group: '{{ $panVsysName }}'
-
oid: panVsysActiveUdpCps
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.9.1.7.{{ $index }}'
index: 'panVsysActiveUdpCps.{{ $index }}'
descr: UDP Connections Per Second
group: '{{ $panVsysName }}'
-
oid: panVsysActiveOtherIpCps
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.9.1.8.{{ $index }}'
index: 'panVsysActiveOtherIpCps.{{ $index }}'
descr: Other IP Connections Per Second
group: '{{ $panVsysName }}'
load:
data:
-
oid: panSessionUtilization
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.1.{{ $index }}'
index: 'panSessionUtilization.{{ $index }}'
descr: Session Utilization
group: Sessions
-
oid: panSessionSslProxyUtilization
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.8.{{ $index }}'
index: 'panSessionSslProxyUtilization.{{ $index }}'
descr: Session Utilization in SSL Proxy
group: Sessions
-
oid: panVsysSessionUtilizationPct
num_oid: '.1.3.6.1.4.1.25461.2.1.2.3.9.1.3.{{ $index }}'
index: 'panVsysSessionUtilizationPct.{{ $index }}'
descr: Session Utilization
group: '{{ $panVsysName }}'
+204
View File
@@ -0,0 +1,204 @@
-- ***********************************************
-- PAN-PRODUCT-MIB.my
--
-- MIB for Log Collector specific MIB objects.
-- ***********************************************
PAN-LC-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Unsigned32
FROM SNMPv2-SMI
-- MODULE-COMPLIANCE, OBJECT-GROUP
-- FROM SNMPv2-CONF
DisplayString, TruthValue
FROM SNMPv2-TC
panModules, panProductsMibs
FROM PAN-GLOBAL-REG
panM-100
FROM PAN-PRODUCTS-MIB;
panLogCollectorMibsModule MODULE-IDENTITY
LAST-UPDATED "201201111013Z"
ORGANIZATION "Palo Alto Networks"
CONTACT-INFO "
Customer Support
Palo Alto Networks
4401 Great America Pkwy
Santa Clara, CA 95054-1211
+1 866-898-9087
support at paloaltonetworks dot com"
DESCRIPTION "
A MIB module containing definitions of managed objects
implemented by Log Collector Appliances from Palo Alto Networks."
REVISION "201201111013Z"
DESCRIPTION "
Rev 1.0
Initial version of MIB module PAN-LC-MIB."
::= { panModules 6 }
----------------------------------------------------------------------
-- System objects
panLcStat OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for the Log collection statistics."
::= { panM-100 1 }
panLcLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The write rate in logs/s on the Log Collection"
::= { panLcStat 1 }
panLcLogDuration OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for the Log Duration on the Log Collector. Log
Duration is Expressed in Days of storage."
::= { panLcStat 2 }
panLcDiskUsage OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for the Log Disk Usage on the Log Collector. Log
Disk Usage is available as MB in use."
::= { panLcStat 3 }
panLcDiskUsageLd1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log disk usage on logical disk 1 on the Log Collector"
::= { panLcDiskUsage 1 }
panLcDiskUsageLd2 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log disk usage on logical disk 2 on the Log Collector"
::= { panLcDiskUsage 2 }
panLcDiskUsageLd3 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log disk usage on logical disk 3 on the Log Collector"
::= { panLcDiskUsage 3 }
panLcDiskUsageLd4 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log disk usage on logical disk 4 on the Log Collector"
::= { panLcDiskUsage 4 }
panLcLogDurationTraffic OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the traffic logs on the Log Collector"
::= { panLcLogDuration 1 }
panLcLogDurationConfig OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the config logs on the Log Collector"
::= { panLcLogDuration 2 }
panLcLogDurationSystem OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the system logs on the Log Collector"
::= { panLcLogDuration 3 }
panLcLogDurationThreat OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the threat logs on the Log Collector"
::= { panLcLogDuration 4 }
panLcLogDurationAppstat OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the appstat logs on the Log Collector"
::= { panLcLogDuration 5 }
panLcLogDurationTrsum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the trsum logs on the Log Collector"
::= { panLcLogDuration 6 }
panLcLogDurationThsum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the thsum logs on the Log Collector"
::= { panLcLogDuration 7 }
panLcLogDurationEvent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the event logs on the Log Collector"
::= { panLcLogDuration 8 }
panLcLogDurationAlarm OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the alarm logs on the Log Collector"
::= { panLcLogDuration 9 }
panLcLogDurationHipmatch OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the hipmatch logs on the Log Collector"
::= { panLcLogDuration 10 }
panLcLogDurationUserid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log duration (in days) for the userid logs on the Log Collector"
::= { panLcLogDuration 11 }
panLcIsRedundancyMember OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True value indicates this Log Collector is part of a Collector Group with Redundancy is enabled"
::= { panM-100 2 }
END
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+866
View File
@@ -1,2 +1,868 @@
1.3.6.1.2.1.1.1.0|4|Palo Alto Networks PA-3000 series firewall 1.3.6.1.2.1.1.1.0|4|Palo Alto Networks PA-3000 series firewall
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.25461 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.25461
1.3.6.1.2.1.1.3.0|67|195782543
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.2.1|4|ha1
1.3.6.1.2.1.2.2.1.2.2|4|ha2
1.3.6.1.2.1.2.2.1.2.3|4|mgmt
1.3.6.1.2.1.2.2.1.2.4|4|ethernet1/1
1.3.6.1.2.1.2.2.1.2.5|4|ethernet1/2
1.3.6.1.2.1.2.2.1.2.6|4|ethernet1/3
1.3.6.1.2.1.2.2.1.2.7|4|ethernet1/4
1.3.6.1.2.1.2.2.1.2.8|4|ethernet1/5
1.3.6.1.2.1.2.2.1.2.9|4|ethernet1/6
1.3.6.1.2.1.2.2.1.2.10|4|ethernet1/7
1.3.6.1.2.1.2.2.1.2.11|4|ethernet1/8
1.3.6.1.2.1.2.2.1.2.12|4|ethernet1/9
1.3.6.1.2.1.2.2.1.2.101011101|4|ethernet1/1.1
1.3.6.1.2.1.2.2.1.2.101011104|4|ethernet1/1.2
1.3.6.1.2.1.2.2.1.2.101011105|4|ethernet1/1.3
1.3.6.1.2.1.2.2.1.2.101011300|4|ethernet1/1.4
1.3.6.1.2.1.2.2.1.2.101011301|4|ethernet1/1.5
1.3.6.1.2.1.2.2.1.2.101011310|4|ethernet1/1.6
1.3.6.1.2.1.2.2.1.2.101011400|4|ethernet1/1.7
1.3.6.1.2.1.2.2.1.2.200000000|4|vlan
1.3.6.1.2.1.2.2.1.2.300000000|4|loopback
1.3.6.1.2.1.2.2.1.2.300000001|4|loopback.1
1.3.6.1.2.1.2.2.1.2.300000002|4|loopback.2
1.3.6.1.2.1.2.2.1.2.400000000|4|tunnel
1.3.6.1.2.1.2.2.1.2.400000001|4|tunnel.1
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.101011101|2|136
1.3.6.1.2.1.2.2.1.3.101011104|2|136
1.3.6.1.2.1.2.2.1.3.101011105|2|136
1.3.6.1.2.1.2.2.1.3.101011300|2|136
1.3.6.1.2.1.2.2.1.3.101011301|2|136
1.3.6.1.2.1.2.2.1.3.101011310|2|136
1.3.6.1.2.1.2.2.1.3.101011400|2|136
1.3.6.1.2.1.2.2.1.3.200000000|2|135
1.3.6.1.2.1.2.2.1.3.300000000|2|24
1.3.6.1.2.1.2.2.1.3.300000001|2|24
1.3.6.1.2.1.2.2.1.3.300000002|2|24
1.3.6.1.2.1.2.2.1.3.400000000|2|131
1.3.6.1.2.1.2.2.1.3.400000001|2|131
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|0
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|0
1.3.6.1.2.1.2.2.1.4.9|2|0
1.3.6.1.2.1.2.2.1.4.10|2|0
1.3.6.1.2.1.2.2.1.4.11|2|0
1.3.6.1.2.1.2.2.1.4.12|2|0
1.3.6.1.2.1.2.2.1.4.101011101|2|0
1.3.6.1.2.1.2.2.1.4.101011104|2|0
1.3.6.1.2.1.2.2.1.4.101011105|2|0
1.3.6.1.2.1.2.2.1.4.101011300|2|0
1.3.6.1.2.1.2.2.1.4.101011301|2|0
1.3.6.1.2.1.2.2.1.4.101011310|2|0
1.3.6.1.2.1.2.2.1.4.101011400|2|0
1.3.6.1.2.1.2.2.1.4.200000000|2|0
1.3.6.1.2.1.2.2.1.4.300000000|2|0
1.3.6.1.2.1.2.2.1.4.300000001|2|0
1.3.6.1.2.1.2.2.1.4.300000002|2|0
1.3.6.1.2.1.2.2.1.4.400000000|2|0
1.3.6.1.2.1.2.2.1.4.400000001|2|0
1.3.6.1.2.1.2.2.1.6.1|4x|005056A02246
1.3.6.1.2.1.2.2.1.6.2|4x|005056A07272
1.3.6.1.2.1.2.2.1.6.3|4x|005056A02246
1.3.6.1.2.1.2.2.1.6.4|4x|005056A063C3
1.3.6.1.2.1.2.2.1.6.5|4x|005056A049F5
1.3.6.1.2.1.2.2.1.6.6|4x|005056A07272
1.3.6.1.2.1.2.2.1.6.7|4x|005056A00B7C
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4|
1.3.6.1.2.1.2.2.1.6.10|4|
1.3.6.1.2.1.2.2.1.6.11|4|
1.3.6.1.2.1.2.2.1.6.12|4|
1.3.6.1.2.1.2.2.1.6.101011101|4|
1.3.6.1.2.1.2.2.1.6.101011104|4|
1.3.6.1.2.1.2.2.1.6.101011105|4|
1.3.6.1.2.1.2.2.1.6.101011300|4|
1.3.6.1.2.1.2.2.1.6.101011301|4|
1.3.6.1.2.1.2.2.1.6.101011310|4|
1.3.6.1.2.1.2.2.1.6.101011400|4|
1.3.6.1.2.1.2.2.1.6.200000000|4|
1.3.6.1.2.1.2.2.1.6.300000000|4|
1.3.6.1.2.1.2.2.1.6.300000001|4|
1.3.6.1.2.1.2.2.1.6.300000002|4|
1.3.6.1.2.1.2.2.1.6.400000000|4|
1.3.6.1.2.1.2.2.1.6.400000001|4|
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|2
1.3.6.1.2.1.2.2.1.7.9|2|2
1.3.6.1.2.1.2.2.1.7.10|2|2
1.3.6.1.2.1.2.2.1.7.11|2|2
1.3.6.1.2.1.2.2.1.7.12|2|2
1.3.6.1.2.1.2.2.1.7.101011101|2|1
1.3.6.1.2.1.2.2.1.7.101011104|2|1
1.3.6.1.2.1.2.2.1.7.101011105|2|1
1.3.6.1.2.1.2.2.1.7.101011300|2|1
1.3.6.1.2.1.2.2.1.7.101011301|2|1
1.3.6.1.2.1.2.2.1.7.101011310|2|1
1.3.6.1.2.1.2.2.1.7.101011400|2|1
1.3.6.1.2.1.2.2.1.7.200000000|2|1
1.3.6.1.2.1.2.2.1.7.300000000|2|1
1.3.6.1.2.1.2.2.1.7.300000001|2|1
1.3.6.1.2.1.2.2.1.7.300000002|2|1
1.3.6.1.2.1.2.2.1.7.400000000|2|1
1.3.6.1.2.1.2.2.1.7.400000001|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|1
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.8|2|2
1.3.6.1.2.1.2.2.1.8.9|2|2
1.3.6.1.2.1.2.2.1.8.10|2|2
1.3.6.1.2.1.2.2.1.8.11|2|2
1.3.6.1.2.1.2.2.1.8.12|2|2
1.3.6.1.2.1.2.2.1.8.101011101|2|1
1.3.6.1.2.1.2.2.1.8.101011104|2|1
1.3.6.1.2.1.2.2.1.8.101011105|2|1
1.3.6.1.2.1.2.2.1.8.101011300|2|1
1.3.6.1.2.1.2.2.1.8.101011301|2|1
1.3.6.1.2.1.2.2.1.8.101011310|2|1
1.3.6.1.2.1.2.2.1.8.101011400|2|1
1.3.6.1.2.1.2.2.1.8.200000000|2|1
1.3.6.1.2.1.2.2.1.8.300000000|2|1
1.3.6.1.2.1.2.2.1.8.300000001|2|1
1.3.6.1.2.1.2.2.1.8.300000002|2|1
1.3.6.1.2.1.2.2.1.8.400000000|2|1
1.3.6.1.2.1.2.2.1.8.400000001|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|0
1.3.6.1.2.1.2.2.1.9.101011101|67|0
1.3.6.1.2.1.2.2.1.9.101011104|67|0
1.3.6.1.2.1.2.2.1.9.101011105|67|0
1.3.6.1.2.1.2.2.1.9.101011300|67|0
1.3.6.1.2.1.2.2.1.9.101011301|67|0
1.3.6.1.2.1.2.2.1.9.101011310|67|0
1.3.6.1.2.1.2.2.1.9.101011400|67|0
1.3.6.1.2.1.2.2.1.9.200000000|67|0
1.3.6.1.2.1.2.2.1.9.300000000|67|0
1.3.6.1.2.1.2.2.1.9.300000001|67|0
1.3.6.1.2.1.2.2.1.9.300000002|67|0
1.3.6.1.2.1.2.2.1.9.400000000|67|0
1.3.6.1.2.1.2.2.1.9.400000001|67|0
1.3.6.1.2.1.2.2.1.13.1|65|40624
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|40624
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|0
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|0
1.3.6.1.2.1.2.2.1.13.12|65|0
1.3.6.1.2.1.2.2.1.13.101011101|65|0
1.3.6.1.2.1.2.2.1.13.101011104|65|0
1.3.6.1.2.1.2.2.1.13.101011105|65|0
1.3.6.1.2.1.2.2.1.13.101011300|65|0
1.3.6.1.2.1.2.2.1.13.101011301|65|0
1.3.6.1.2.1.2.2.1.13.101011310|65|0
1.3.6.1.2.1.2.2.1.13.101011400|65|0
1.3.6.1.2.1.2.2.1.13.200000000|65|0
1.3.6.1.2.1.2.2.1.13.300000000|65|0
1.3.6.1.2.1.2.2.1.13.300000001|65|0
1.3.6.1.2.1.2.2.1.13.300000002|65|0
1.3.6.1.2.1.2.2.1.13.400000000|65|0
1.3.6.1.2.1.2.2.1.13.400000001|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|0
1.3.6.1.2.1.2.2.1.14.12|65|0
1.3.6.1.2.1.2.2.1.14.101011101|65|0
1.3.6.1.2.1.2.2.1.14.101011104|65|0
1.3.6.1.2.1.2.2.1.14.101011105|65|0
1.3.6.1.2.1.2.2.1.14.101011300|65|0
1.3.6.1.2.1.2.2.1.14.101011301|65|0
1.3.6.1.2.1.2.2.1.14.101011310|65|0
1.3.6.1.2.1.2.2.1.14.101011400|65|0
1.3.6.1.2.1.2.2.1.14.200000000|65|0
1.3.6.1.2.1.2.2.1.14.300000000|65|0
1.3.6.1.2.1.2.2.1.14.300000001|65|0
1.3.6.1.2.1.2.2.1.14.300000002|65|0
1.3.6.1.2.1.2.2.1.14.400000000|65|0
1.3.6.1.2.1.2.2.1.14.400000001|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.101011101|65|0
1.3.6.1.2.1.2.2.1.19.101011104|65|0
1.3.6.1.2.1.2.2.1.19.101011105|65|0
1.3.6.1.2.1.2.2.1.19.101011300|65|0
1.3.6.1.2.1.2.2.1.19.101011301|65|0
1.3.6.1.2.1.2.2.1.19.101011310|65|0
1.3.6.1.2.1.2.2.1.19.101011400|65|0
1.3.6.1.2.1.2.2.1.19.200000000|65|0
1.3.6.1.2.1.2.2.1.19.300000000|65|0
1.3.6.1.2.1.2.2.1.19.300000001|65|0
1.3.6.1.2.1.2.2.1.19.300000002|65|0
1.3.6.1.2.1.2.2.1.19.400000000|65|0
1.3.6.1.2.1.2.2.1.19.400000001|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.20.11|65|0
1.3.6.1.2.1.2.2.1.20.12|65|0
1.3.6.1.2.1.2.2.1.20.101011101|65|0
1.3.6.1.2.1.2.2.1.20.101011104|65|0
1.3.6.1.2.1.2.2.1.20.101011105|65|0
1.3.6.1.2.1.2.2.1.20.101011300|65|0
1.3.6.1.2.1.2.2.1.20.101011301|65|0
1.3.6.1.2.1.2.2.1.20.101011310|65|0
1.3.6.1.2.1.2.2.1.20.101011400|65|0
1.3.6.1.2.1.2.2.1.20.200000000|65|0
1.3.6.1.2.1.2.2.1.20.300000000|65|0
1.3.6.1.2.1.2.2.1.20.300000001|65|0
1.3.6.1.2.1.2.2.1.20.300000002|65|0
1.3.6.1.2.1.2.2.1.20.400000000|65|0
1.3.6.1.2.1.2.2.1.20.400000001|65|0
1.3.6.1.2.1.25.1.1.0|67|195803403
1.3.6.1.2.1.25.1.5.0|66|2
1.3.6.1.2.1.25.2.3.1.1.1010|2|1010
1.3.6.1.2.1.25.2.3.1.1.1011|2|1011
1.3.6.1.2.1.25.2.3.1.1.1012|2|1012
1.3.6.1.2.1.25.2.3.1.1.1020|2|1020
1.3.6.1.2.1.25.2.3.1.1.1030|2|1030
1.3.6.1.2.1.25.2.3.1.1.1040|2|1040
1.3.6.1.2.1.25.2.3.1.1.1041|2|1041
1.3.6.1.2.1.25.2.3.1.1.1042|2|1042
1.3.6.1.2.1.25.2.3.1.2.1010|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.1011|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.1012|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.1020|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.1030|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.1040|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.1041|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.1042|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1010|4|Slot-1 Data Processor-0 Packet Descriptors
1.3.6.1.2.1.25.2.3.1.3.1011|4|Slot-1 Data Processor-0 Hardware Packet Buffers
1.3.6.1.2.1.25.2.3.1.3.1012|4|Slot-1 Data Processor-0 Software Packet Buffers
1.3.6.1.2.1.25.2.3.1.3.1020|4|Slot-1 Management Memory
1.3.6.1.2.1.25.2.3.1.3.1030|4|Slot-1 Management Swap
1.3.6.1.2.1.25.2.3.1.3.1040|4|Slot-1 Management Config Partition
1.3.6.1.2.1.25.2.3.1.3.1041|4|Slot-1 Management Log Partition
1.3.6.1.2.1.25.2.3.1.3.1042|4|Slot-1 Management Root Partition
1.3.6.1.2.1.25.2.3.1.4.1010|2|32
1.3.6.1.2.1.25.2.3.1.4.1011|2|24
1.3.6.1.2.1.25.2.3.1.4.1012|2|2946
1.3.6.1.2.1.25.2.3.1.4.1020|2|1024
1.3.6.1.2.1.25.2.3.1.4.1030|2|1024
1.3.6.1.2.1.25.2.3.1.4.1040|2|1024
1.3.6.1.2.1.25.2.3.1.4.1041|2|1024
1.3.6.1.2.1.25.2.3.1.4.1042|2|1024
1.3.6.1.2.1.25.2.3.1.5.1010|2|331024
1.3.6.1.2.1.25.2.3.1.5.1011|2|328976
1.3.6.1.2.1.25.2.3.1.5.1012|2|43136
1.3.6.1.2.1.25.2.3.1.5.1020|2|6118176
1.3.6.1.2.1.25.2.3.1.5.1030|2|0
1.3.6.1.2.1.25.2.3.1.5.1040|2|8322488
1.3.6.1.2.1.25.2.3.1.5.1041|2|5201536
1.3.6.1.2.1.25.2.3.1.5.1042|2|7282104
1.3.6.1.2.1.25.2.3.1.6.1010|2|392
1.3.6.1.2.1.25.2.3.1.6.1011|2|384
1.3.6.1.2.1.25.2.3.1.6.1012|2|3
1.3.6.1.2.1.25.2.3.1.6.1020|2|2920240
1.3.6.1.2.1.25.2.3.1.6.1030|2|0
1.3.6.1.2.1.25.2.3.1.6.1040|2|3623636
1.3.6.1.2.1.25.2.3.1.6.1041|2|3880980
1.3.6.1.2.1.25.2.3.1.6.1042|2|3465680
1.3.6.1.2.1.25.3.2.1.1.1|2|1
1.3.6.1.2.1.25.3.2.1.1.2|2|2
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.3.1|4|Slot-1 Management Processor
1.3.6.1.2.1.25.3.2.1.3.2|4|Slot-1 Data Processor
1.3.6.1.2.1.25.3.2.1.4.1|6|0.0
1.3.6.1.2.1.25.3.2.1.4.2|6|0.0
1.3.6.1.2.1.25.3.2.1.5.1|2|2
1.3.6.1.2.1.25.3.2.1.5.2|2|2
1.3.6.1.2.1.25.3.3.1.1.1|6|0.0
1.3.6.1.2.1.25.3.3.1.1.2|6|0.0
1.3.6.1.2.1.25.3.3.1.2.1|2|2
1.3.6.1.2.1.25.3.3.1.2.2|2|0
1.3.6.1.2.1.31.1.1.1.1.1|4|ha1
1.3.6.1.2.1.31.1.1.1.1.2|4|ha2
1.3.6.1.2.1.31.1.1.1.1.3|4|mgmt
1.3.6.1.2.1.31.1.1.1.1.4|4|ethernet1/1
1.3.6.1.2.1.31.1.1.1.1.5|4|ethernet1/2
1.3.6.1.2.1.31.1.1.1.1.6|4|ethernet1/3
1.3.6.1.2.1.31.1.1.1.1.7|4|ethernet1/4
1.3.6.1.2.1.31.1.1.1.1.8|4|ethernet1/5
1.3.6.1.2.1.31.1.1.1.1.9|4|ethernet1/6
1.3.6.1.2.1.31.1.1.1.1.10|4|ethernet1/7
1.3.6.1.2.1.31.1.1.1.1.11|4|ethernet1/8
1.3.6.1.2.1.31.1.1.1.1.12|4|ethernet1/9
1.3.6.1.2.1.31.1.1.1.1.101011101|4|ethernet1/1.1
1.3.6.1.2.1.31.1.1.1.1.101011104|4|ethernet1/1.2
1.3.6.1.2.1.31.1.1.1.1.101011105|4|ethernet1/1.3
1.3.6.1.2.1.31.1.1.1.1.101011300|4|ethernet1/1.4
1.3.6.1.2.1.31.1.1.1.1.101011301|4|ethernet1/1.5
1.3.6.1.2.1.31.1.1.1.1.101011310|4|ethernet1/1.6
1.3.6.1.2.1.31.1.1.1.1.101011400|4|ethernet1/1.7
1.3.6.1.2.1.31.1.1.1.1.200000000|4|vlan
1.3.6.1.2.1.31.1.1.1.1.300000000|4|loopback
1.3.6.1.2.1.31.1.1.1.1.300000001|4|loopback.1
1.3.6.1.2.1.31.1.1.1.1.300000002|4|loopback.2
1.3.6.1.2.1.31.1.1.1.1.400000000|4|tunnel
1.3.6.1.2.1.31.1.1.1.1.400000001|4|tunnel.1
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|0
1.3.6.1.2.1.31.1.1.1.2.5|65|0
1.3.6.1.2.1.31.1.1.1.2.6|65|0
1.3.6.1.2.1.31.1.1.1.2.7|65|0
1.3.6.1.2.1.31.1.1.1.2.8|65|0
1.3.6.1.2.1.31.1.1.1.2.9|65|0
1.3.6.1.2.1.31.1.1.1.2.10|65|0
1.3.6.1.2.1.31.1.1.1.2.11|65|0
1.3.6.1.2.1.31.1.1.1.2.12|65|0
1.3.6.1.2.1.31.1.1.1.2.101011101|65|0
1.3.6.1.2.1.31.1.1.1.2.101011104|65|0
1.3.6.1.2.1.31.1.1.1.2.101011105|65|0
1.3.6.1.2.1.31.1.1.1.2.101011300|65|0
1.3.6.1.2.1.31.1.1.1.2.101011301|65|0
1.3.6.1.2.1.31.1.1.1.2.101011310|65|0
1.3.6.1.2.1.31.1.1.1.2.101011400|65|0
1.3.6.1.2.1.31.1.1.1.2.200000000|65|0
1.3.6.1.2.1.31.1.1.1.2.300000000|65|0
1.3.6.1.2.1.31.1.1.1.2.300000001|65|0
1.3.6.1.2.1.31.1.1.1.2.300000002|65|0
1.3.6.1.2.1.31.1.1.1.2.400000000|65|0
1.3.6.1.2.1.31.1.1.1.2.400000001|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
1.3.6.1.2.1.31.1.1.1.3.5|65|0
1.3.6.1.2.1.31.1.1.1.3.6|65|0
1.3.6.1.2.1.31.1.1.1.3.7|65|0
1.3.6.1.2.1.31.1.1.1.3.8|65|0
1.3.6.1.2.1.31.1.1.1.3.9|65|0
1.3.6.1.2.1.31.1.1.1.3.10|65|0
1.3.6.1.2.1.31.1.1.1.3.11|65|0
1.3.6.1.2.1.31.1.1.1.3.12|65|0
1.3.6.1.2.1.31.1.1.1.3.101011101|65|0
1.3.6.1.2.1.31.1.1.1.3.101011104|65|0
1.3.6.1.2.1.31.1.1.1.3.101011105|65|0
1.3.6.1.2.1.31.1.1.1.3.101011300|65|0
1.3.6.1.2.1.31.1.1.1.3.101011301|65|0
1.3.6.1.2.1.31.1.1.1.3.101011310|65|0
1.3.6.1.2.1.31.1.1.1.3.101011400|65|0
1.3.6.1.2.1.31.1.1.1.3.200000000|65|0
1.3.6.1.2.1.31.1.1.1.3.300000000|65|0
1.3.6.1.2.1.31.1.1.1.3.300000001|65|0
1.3.6.1.2.1.31.1.1.1.3.300000002|65|0
1.3.6.1.2.1.31.1.1.1.3.400000000|65|0
1.3.6.1.2.1.31.1.1.1.3.400000001|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.5|65|0
1.3.6.1.2.1.31.1.1.1.4.6|65|0
1.3.6.1.2.1.31.1.1.1.4.7|65|0
1.3.6.1.2.1.31.1.1.1.4.8|65|0
1.3.6.1.2.1.31.1.1.1.4.9|65|0
1.3.6.1.2.1.31.1.1.1.4.10|65|0
1.3.6.1.2.1.31.1.1.1.4.11|65|0
1.3.6.1.2.1.31.1.1.1.4.12|65|0
1.3.6.1.2.1.31.1.1.1.4.101011101|65|0
1.3.6.1.2.1.31.1.1.1.4.101011104|65|0
1.3.6.1.2.1.31.1.1.1.4.101011105|65|0
1.3.6.1.2.1.31.1.1.1.4.101011300|65|0
1.3.6.1.2.1.31.1.1.1.4.101011301|65|0
1.3.6.1.2.1.31.1.1.1.4.101011310|65|0
1.3.6.1.2.1.31.1.1.1.4.101011400|65|0
1.3.6.1.2.1.31.1.1.1.4.200000000|65|0
1.3.6.1.2.1.31.1.1.1.4.300000000|65|0
1.3.6.1.2.1.31.1.1.1.4.300000001|65|0
1.3.6.1.2.1.31.1.1.1.4.300000002|65|0
1.3.6.1.2.1.31.1.1.1.4.400000000|65|0
1.3.6.1.2.1.31.1.1.1.4.400000001|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.5|65|0
1.3.6.1.2.1.31.1.1.1.5.6|65|0
1.3.6.1.2.1.31.1.1.1.5.7|65|0
1.3.6.1.2.1.31.1.1.1.5.8|65|0
1.3.6.1.2.1.31.1.1.1.5.9|65|0
1.3.6.1.2.1.31.1.1.1.5.10|65|0
1.3.6.1.2.1.31.1.1.1.5.11|65|0
1.3.6.1.2.1.31.1.1.1.5.12|65|0
1.3.6.1.2.1.31.1.1.1.5.101011101|65|0
1.3.6.1.2.1.31.1.1.1.5.101011104|65|0
1.3.6.1.2.1.31.1.1.1.5.101011105|65|0
1.3.6.1.2.1.31.1.1.1.5.101011300|65|0
1.3.6.1.2.1.31.1.1.1.5.101011301|65|0
1.3.6.1.2.1.31.1.1.1.5.101011310|65|0
1.3.6.1.2.1.31.1.1.1.5.101011400|65|0
1.3.6.1.2.1.31.1.1.1.5.200000000|65|0
1.3.6.1.2.1.31.1.1.1.5.300000000|65|0
1.3.6.1.2.1.31.1.1.1.5.300000001|65|0
1.3.6.1.2.1.31.1.1.1.5.300000002|65|0
1.3.6.1.2.1.31.1.1.1.5.400000000|65|0
1.3.6.1.2.1.31.1.1.1.5.400000001|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|20216031613
1.3.6.1.2.1.31.1.1.1.6.2|70|201048036
1.3.6.1.2.1.31.1.1.1.6.3|70|20216031613
1.3.6.1.2.1.31.1.1.1.6.4|70|5660984842
1.3.6.1.2.1.31.1.1.1.6.5|70|621930797
1.3.6.1.2.1.31.1.1.1.6.6|70|201048036
1.3.6.1.2.1.31.1.1.1.6.7|70|5247975659
1.3.6.1.2.1.31.1.1.1.6.8|70|0
1.3.6.1.2.1.31.1.1.1.6.9|70|0
1.3.6.1.2.1.31.1.1.1.6.10|70|0
1.3.6.1.2.1.31.1.1.1.6.11|70|0
1.3.6.1.2.1.31.1.1.1.6.12|70|0
1.3.6.1.2.1.31.1.1.1.6.101011101|70|203638582
1.3.6.1.2.1.31.1.1.1.6.101011104|70|2375908276
1.3.6.1.2.1.31.1.1.1.6.101011105|70|3069097340
1.3.6.1.2.1.31.1.1.1.6.101011300|70|0
1.3.6.1.2.1.31.1.1.1.6.101011301|70|0
1.3.6.1.2.1.31.1.1.1.6.101011310|70|0
1.3.6.1.2.1.31.1.1.1.6.101011400|70|0
1.3.6.1.2.1.31.1.1.1.6.200000000|70|0
1.3.6.1.2.1.31.1.1.1.6.300000000|70|0
1.3.6.1.2.1.31.1.1.1.6.300000001|70|27400913
1.3.6.1.2.1.31.1.1.1.6.300000002|70|0
1.3.6.1.2.1.31.1.1.1.6.400000000|70|0
1.3.6.1.2.1.31.1.1.1.6.400000001|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|42147104
1.3.6.1.2.1.31.1.1.1.7.2|70|693568
1.3.6.1.2.1.31.1.1.1.7.3|70|42147104
1.3.6.1.2.1.31.1.1.1.7.4|70|15417427
1.3.6.1.2.1.31.1.1.1.7.5|70|7282772
1.3.6.1.2.1.31.1.1.1.7.6|70|693568
1.3.6.1.2.1.31.1.1.1.7.7|70|7912402
1.3.6.1.2.1.31.1.1.1.7.8|70|0
1.3.6.1.2.1.31.1.1.1.7.9|70|0
1.3.6.1.2.1.31.1.1.1.7.10|70|0
1.3.6.1.2.1.31.1.1.1.7.11|70|0
1.3.6.1.2.1.31.1.1.1.7.12|70|0
1.3.6.1.2.1.31.1.1.1.7.101011101|70|693041
1.3.6.1.2.1.31.1.1.1.7.101011104|70|9156682
1.3.6.1.2.1.31.1.1.1.7.101011105|70|5495206
1.3.6.1.2.1.31.1.1.1.7.101011300|70|0
1.3.6.1.2.1.31.1.1.1.7.101011301|70|0
1.3.6.1.2.1.31.1.1.1.7.101011310|70|0
1.3.6.1.2.1.31.1.1.1.7.101011400|70|0
1.3.6.1.2.1.31.1.1.1.7.200000000|70|0
1.3.6.1.2.1.31.1.1.1.7.300000000|70|0
1.3.6.1.2.1.31.1.1.1.7.300000001|70|260681
1.3.6.1.2.1.31.1.1.1.7.300000002|70|0
1.3.6.1.2.1.31.1.1.1.7.400000000|70|0
1.3.6.1.2.1.31.1.1.1.7.400000001|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|0
1.3.6.1.2.1.31.1.1.1.8.5|70|0
1.3.6.1.2.1.31.1.1.1.8.6|70|0
1.3.6.1.2.1.31.1.1.1.8.7|70|0
1.3.6.1.2.1.31.1.1.1.8.8|70|0
1.3.6.1.2.1.31.1.1.1.8.9|70|0
1.3.6.1.2.1.31.1.1.1.8.10|70|0
1.3.6.1.2.1.31.1.1.1.8.11|70|0
1.3.6.1.2.1.31.1.1.1.8.12|70|0
1.3.6.1.2.1.31.1.1.1.8.101011101|70|0
1.3.6.1.2.1.31.1.1.1.8.101011104|70|0
1.3.6.1.2.1.31.1.1.1.8.101011105|70|0
1.3.6.1.2.1.31.1.1.1.8.101011300|70|0
1.3.6.1.2.1.31.1.1.1.8.101011301|70|0
1.3.6.1.2.1.31.1.1.1.8.101011310|70|0
1.3.6.1.2.1.31.1.1.1.8.101011400|70|0
1.3.6.1.2.1.31.1.1.1.8.200000000|70|0
1.3.6.1.2.1.31.1.1.1.8.300000000|70|0
1.3.6.1.2.1.31.1.1.1.8.300000001|70|0
1.3.6.1.2.1.31.1.1.1.8.300000002|70|0
1.3.6.1.2.1.31.1.1.1.8.400000000|70|0
1.3.6.1.2.1.31.1.1.1.8.400000001|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
1.3.6.1.2.1.31.1.1.1.9.5|70|0
1.3.6.1.2.1.31.1.1.1.9.6|70|0
1.3.6.1.2.1.31.1.1.1.9.7|70|0
1.3.6.1.2.1.31.1.1.1.9.8|70|0
1.3.6.1.2.1.31.1.1.1.9.9|70|0
1.3.6.1.2.1.31.1.1.1.9.10|70|0
1.3.6.1.2.1.31.1.1.1.9.11|70|0
1.3.6.1.2.1.31.1.1.1.9.12|70|0
1.3.6.1.2.1.31.1.1.1.9.101011101|70|0
1.3.6.1.2.1.31.1.1.1.9.101011104|70|0
1.3.6.1.2.1.31.1.1.1.9.101011105|70|0
1.3.6.1.2.1.31.1.1.1.9.101011300|70|0
1.3.6.1.2.1.31.1.1.1.9.101011301|70|0
1.3.6.1.2.1.31.1.1.1.9.101011310|70|0
1.3.6.1.2.1.31.1.1.1.9.101011400|70|0
1.3.6.1.2.1.31.1.1.1.9.200000000|70|0
1.3.6.1.2.1.31.1.1.1.9.300000000|70|0
1.3.6.1.2.1.31.1.1.1.9.300000001|70|0
1.3.6.1.2.1.31.1.1.1.9.300000002|70|0
1.3.6.1.2.1.31.1.1.1.9.400000000|70|0
1.3.6.1.2.1.31.1.1.1.9.400000001|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|8152240294
1.3.6.1.2.1.31.1.1.1.10.2|70|3321377682
1.3.6.1.2.1.31.1.1.1.10.3|70|8152240294
1.3.6.1.2.1.31.1.1.1.10.4|70|8951501006
1.3.6.1.2.1.31.1.1.1.10.5|70|501909255
1.3.6.1.2.1.31.1.1.1.10.6|70|3321377682
1.3.6.1.2.1.31.1.1.1.10.7|70|588145468
1.3.6.1.2.1.31.1.1.1.10.8|70|0
1.3.6.1.2.1.31.1.1.1.10.9|70|0
1.3.6.1.2.1.31.1.1.1.10.10|70|0
1.3.6.1.2.1.31.1.1.1.10.11|70|0
1.3.6.1.2.1.31.1.1.1.10.12|70|0
1.3.6.1.2.1.31.1.1.1.10.101011101|70|3002972
1.3.6.1.2.1.31.1.1.1.10.101011104|70|7454956573
1.3.6.1.2.1.31.1.1.1.10.101011105|70|1481531499
1.3.6.1.2.1.31.1.1.1.10.101011300|70|3002696
1.3.6.1.2.1.31.1.1.1.10.101011301|70|3002696
1.3.6.1.2.1.31.1.1.1.10.101011310|70|3002696
1.3.6.1.2.1.31.1.1.1.10.101011400|70|3002696
1.3.6.1.2.1.31.1.1.1.10.200000000|70|0
1.3.6.1.2.1.31.1.1.1.10.300000000|70|0
1.3.6.1.2.1.31.1.1.1.10.300000001|70|0
1.3.6.1.2.1.31.1.1.1.10.300000002|70|0
1.3.6.1.2.1.31.1.1.1.10.400000000|70|0
1.3.6.1.2.1.31.1.1.1.10.400000001|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|40397614
1.3.6.1.2.1.31.1.1.1.11.2|70|8401430
1.3.6.1.2.1.31.1.1.1.11.3|70|40397614
1.3.6.1.2.1.31.1.1.1.11.4|70|14063825
1.3.6.1.2.1.31.1.1.1.11.5|70|3220482
1.3.6.1.2.1.31.1.1.1.11.6|70|8401430
1.3.6.1.2.1.31.1.1.1.11.7|70|2571811
1.3.6.1.2.1.31.1.1.1.11.8|70|0
1.3.6.1.2.1.31.1.1.1.11.9|70|0
1.3.6.1.2.1.31.1.1.1.11.10|70|0
1.3.6.1.2.1.31.1.1.1.11.11|70|0
1.3.6.1.2.1.31.1.1.1.11.12|70|0
1.3.6.1.2.1.31.1.1.1.11.101011101|70|65282
1.3.6.1.2.1.31.1.1.1.11.101011104|70|9527758
1.3.6.1.2.1.31.1.1.1.11.101011105|70|4209688
1.3.6.1.2.1.31.1.1.1.11.101011300|70|65276
1.3.6.1.2.1.31.1.1.1.11.101011301|70|65276
1.3.6.1.2.1.31.1.1.1.11.101011310|70|65276
1.3.6.1.2.1.31.1.1.1.11.101011400|70|65276
1.3.6.1.2.1.31.1.1.1.11.200000000|70|0
1.3.6.1.2.1.31.1.1.1.11.300000000|70|0
1.3.6.1.2.1.31.1.1.1.11.300000001|70|0
1.3.6.1.2.1.31.1.1.1.11.300000002|70|0
1.3.6.1.2.1.31.1.1.1.11.400000000|70|0
1.3.6.1.2.1.31.1.1.1.11.400000001|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.5|70|0
1.3.6.1.2.1.31.1.1.1.12.6|70|0
1.3.6.1.2.1.31.1.1.1.12.7|70|0
1.3.6.1.2.1.31.1.1.1.12.8|70|0
1.3.6.1.2.1.31.1.1.1.12.9|70|0
1.3.6.1.2.1.31.1.1.1.12.10|70|0
1.3.6.1.2.1.31.1.1.1.12.11|70|0
1.3.6.1.2.1.31.1.1.1.12.12|70|0
1.3.6.1.2.1.31.1.1.1.12.101011101|70|0
1.3.6.1.2.1.31.1.1.1.12.101011104|70|0
1.3.6.1.2.1.31.1.1.1.12.101011105|70|0
1.3.6.1.2.1.31.1.1.1.12.101011300|70|0
1.3.6.1.2.1.31.1.1.1.12.101011301|70|0
1.3.6.1.2.1.31.1.1.1.12.101011310|70|0
1.3.6.1.2.1.31.1.1.1.12.101011400|70|0
1.3.6.1.2.1.31.1.1.1.12.200000000|70|0
1.3.6.1.2.1.31.1.1.1.12.300000000|70|0
1.3.6.1.2.1.31.1.1.1.12.300000001|70|0
1.3.6.1.2.1.31.1.1.1.12.300000002|70|0
1.3.6.1.2.1.31.1.1.1.12.400000000|70|0
1.3.6.1.2.1.31.1.1.1.12.400000001|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.5|70|0
1.3.6.1.2.1.31.1.1.1.13.6|70|0
1.3.6.1.2.1.31.1.1.1.13.7|70|0
1.3.6.1.2.1.31.1.1.1.13.8|70|0
1.3.6.1.2.1.31.1.1.1.13.9|70|0
1.3.6.1.2.1.31.1.1.1.13.10|70|0
1.3.6.1.2.1.31.1.1.1.13.11|70|0
1.3.6.1.2.1.31.1.1.1.13.12|70|0
1.3.6.1.2.1.31.1.1.1.13.101011101|70|0
1.3.6.1.2.1.31.1.1.1.13.101011104|70|0
1.3.6.1.2.1.31.1.1.1.13.101011105|70|0
1.3.6.1.2.1.31.1.1.1.13.101011300|70|0
1.3.6.1.2.1.31.1.1.1.13.101011301|70|0
1.3.6.1.2.1.31.1.1.1.13.101011310|70|0
1.3.6.1.2.1.31.1.1.1.13.101011400|70|0
1.3.6.1.2.1.31.1.1.1.13.200000000|70|0
1.3.6.1.2.1.31.1.1.1.13.300000000|70|0
1.3.6.1.2.1.31.1.1.1.13.300000001|70|0
1.3.6.1.2.1.31.1.1.1.13.300000002|70|0
1.3.6.1.2.1.31.1.1.1.13.400000000|70|0
1.3.6.1.2.1.31.1.1.1.13.400000001|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|2
1.3.6.1.2.1.31.1.1.1.14.2|2|2
1.3.6.1.2.1.31.1.1.1.14.3|2|2
1.3.6.1.2.1.31.1.1.1.14.4|2|2
1.3.6.1.2.1.31.1.1.1.14.5|2|2
1.3.6.1.2.1.31.1.1.1.14.6|2|2
1.3.6.1.2.1.31.1.1.1.14.7|2|2
1.3.6.1.2.1.31.1.1.1.14.8|2|2
1.3.6.1.2.1.31.1.1.1.14.9|2|2
1.3.6.1.2.1.31.1.1.1.14.10|2|2
1.3.6.1.2.1.31.1.1.1.14.11|2|2
1.3.6.1.2.1.31.1.1.1.14.12|2|2
1.3.6.1.2.1.31.1.1.1.14.101011101|2|0
1.3.6.1.2.1.31.1.1.1.14.101011104|2|0
1.3.6.1.2.1.31.1.1.1.14.101011105|2|0
1.3.6.1.2.1.31.1.1.1.14.101011300|2|0
1.3.6.1.2.1.31.1.1.1.14.101011301|2|0
1.3.6.1.2.1.31.1.1.1.14.101011310|2|0
1.3.6.1.2.1.31.1.1.1.14.101011400|2|0
1.3.6.1.2.1.31.1.1.1.14.200000000|2|0
1.3.6.1.2.1.31.1.1.1.14.300000000|2|0
1.3.6.1.2.1.31.1.1.1.14.300000001|2|0
1.3.6.1.2.1.31.1.1.1.14.300000002|2|0
1.3.6.1.2.1.31.1.1.1.14.400000000|2|0
1.3.6.1.2.1.31.1.1.1.14.400000001|2|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10000
1.3.6.1.2.1.31.1.1.1.15.2|66|10000
1.3.6.1.2.1.31.1.1.1.15.3|66|10000
1.3.6.1.2.1.31.1.1.1.15.4|66|10000
1.3.6.1.2.1.31.1.1.1.15.5|66|10000
1.3.6.1.2.1.31.1.1.1.15.6|66|10000
1.3.6.1.2.1.31.1.1.1.15.7|66|10000
1.3.6.1.2.1.31.1.1.1.15.8|66|40000
1.3.6.1.2.1.31.1.1.1.15.9|66|40000
1.3.6.1.2.1.31.1.1.1.15.10|66|40000
1.3.6.1.2.1.31.1.1.1.15.11|66|40000
1.3.6.1.2.1.31.1.1.1.15.12|66|40000
1.3.6.1.2.1.31.1.1.1.15.101011101|66|0
1.3.6.1.2.1.31.1.1.1.15.101011104|66|0
1.3.6.1.2.1.31.1.1.1.15.101011105|66|0
1.3.6.1.2.1.31.1.1.1.15.101011300|66|0
1.3.6.1.2.1.31.1.1.1.15.101011301|66|0
1.3.6.1.2.1.31.1.1.1.15.101011310|66|0
1.3.6.1.2.1.31.1.1.1.15.101011400|66|0
1.3.6.1.2.1.31.1.1.1.15.200000000|66|0
1.3.6.1.2.1.31.1.1.1.15.300000000|66|0
1.3.6.1.2.1.31.1.1.1.15.300000001|66|0
1.3.6.1.2.1.31.1.1.1.15.300000002|66|0
1.3.6.1.2.1.31.1.1.1.15.400000000|66|0
1.3.6.1.2.1.31.1.1.1.15.400000001|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|1
1.3.6.1.2.1.31.1.1.1.16.2|2|1
1.3.6.1.2.1.31.1.1.1.16.3|2|1
1.3.6.1.2.1.31.1.1.1.16.4|2|1
1.3.6.1.2.1.31.1.1.1.16.5|2|1
1.3.6.1.2.1.31.1.1.1.16.6|2|1
1.3.6.1.2.1.31.1.1.1.16.7|2|1
1.3.6.1.2.1.31.1.1.1.16.8|2|1
1.3.6.1.2.1.31.1.1.1.16.9|2|1
1.3.6.1.2.1.31.1.1.1.16.10|2|1
1.3.6.1.2.1.31.1.1.1.16.11|2|1
1.3.6.1.2.1.31.1.1.1.16.12|2|1
1.3.6.1.2.1.31.1.1.1.16.101011101|2|0
1.3.6.1.2.1.31.1.1.1.16.101011104|2|0
1.3.6.1.2.1.31.1.1.1.16.101011105|2|0
1.3.6.1.2.1.31.1.1.1.16.101011300|2|0
1.3.6.1.2.1.31.1.1.1.16.101011301|2|0
1.3.6.1.2.1.31.1.1.1.16.101011310|2|0
1.3.6.1.2.1.31.1.1.1.16.101011400|2|0
1.3.6.1.2.1.31.1.1.1.16.200000000|2|0
1.3.6.1.2.1.31.1.1.1.16.300000000|2|0
1.3.6.1.2.1.31.1.1.1.16.300000001|2|0
1.3.6.1.2.1.31.1.1.1.16.300000002|2|0
1.3.6.1.2.1.31.1.1.1.16.400000000|2|0
1.3.6.1.2.1.31.1.1.1.16.400000001|2|0
1.3.6.1.2.1.31.1.1.1.17.1|2|1
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.3|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
1.3.6.1.2.1.31.1.1.1.17.5|2|1
1.3.6.1.2.1.31.1.1.1.17.6|2|1
1.3.6.1.2.1.31.1.1.1.17.7|2|1
1.3.6.1.2.1.31.1.1.1.17.8|2|2
1.3.6.1.2.1.31.1.1.1.17.9|2|2
1.3.6.1.2.1.31.1.1.1.17.10|2|2
1.3.6.1.2.1.31.1.1.1.17.11|2|2
1.3.6.1.2.1.31.1.1.1.17.12|2|2
1.3.6.1.2.1.31.1.1.1.17.101011101|2|0
1.3.6.1.2.1.31.1.1.1.17.101011104|2|0
1.3.6.1.2.1.31.1.1.1.17.101011105|2|0
1.3.6.1.2.1.31.1.1.1.17.101011300|2|0
1.3.6.1.2.1.31.1.1.1.17.101011301|2|0
1.3.6.1.2.1.31.1.1.1.17.101011310|2|0
1.3.6.1.2.1.31.1.1.1.17.101011400|2|0
1.3.6.1.2.1.31.1.1.1.17.200000000|2|0
1.3.6.1.2.1.31.1.1.1.17.300000000|2|0
1.3.6.1.2.1.31.1.1.1.17.300000001|2|0
1.3.6.1.2.1.31.1.1.1.17.300000002|2|0
1.3.6.1.2.1.31.1.1.1.17.400000000|2|0
1.3.6.1.2.1.31.1.1.1.17.400000001|2|0
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.3|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|trunk locaux
1.3.6.1.2.1.31.1.1.1.18.5|4|outside
1.3.6.1.2.1.31.1.1.1.18.6|4|HA-2
1.3.6.1.2.1.31.1.1.1.18.7|4|internet
1.3.6.1.2.1.31.1.1.1.18.8|4|
1.3.6.1.2.1.31.1.1.1.18.9|4|
1.3.6.1.2.1.31.1.1.1.18.10|4|
1.3.6.1.2.1.31.1.1.1.18.11|4|
1.3.6.1.2.1.31.1.1.1.18.12|4|
1.3.6.1.2.1.31.1.1.1.18.101011101|4|Preprod - USER
1.3.6.1.2.1.31.1.1.1.18.101011104|4|Preprod - SRV
1.3.6.1.2.1.31.1.1.1.18.101011105|4|Preprod - DMZ PUB
1.3.6.1.2.1.31.1.1.1.18.101011300|4|Preprod - DMZ PUB
1.3.6.1.2.1.31.1.1.1.18.101011301|4|Preprod - DMZ BUR
1.3.6.1.2.1.31.1.1.1.18.101011310|4|Preprpd - DMZ
1.3.6.1.2.1.31.1.1.1.18.101011400|4|Preprod - DMZ Skype
1.3.6.1.2.1.31.1.1.1.18.200000000|4|
1.3.6.1.2.1.31.1.1.1.18.300000000|4|
1.3.6.1.2.1.31.1.1.1.18.300000001|4|GP portail test
1.3.6.1.2.1.31.1.1.1.18.300000002|4|GP gateway test
1.3.6.1.2.1.31.1.1.1.18.400000000|4|
1.3.6.1.2.1.31.1.1.1.18.400000001|4|Gateway GP
1.3.6.1.2.1.31.1.2.1.3.0.5|2|1
1.3.6.1.2.1.31.1.2.1.3.0.6|2|1
1.3.6.1.2.1.31.1.2.1.3.0.7|2|1
1.3.6.1.2.1.31.1.2.1.3.0.8|2|1
1.3.6.1.2.1.31.1.2.1.3.0.9|2|1
1.3.6.1.2.1.31.1.2.1.3.0.10|2|1
1.3.6.1.2.1.31.1.2.1.3.0.11|2|1
1.3.6.1.2.1.31.1.2.1.3.0.12|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011101|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011104|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011105|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011300|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011301|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011310|2|1
1.3.6.1.2.1.31.1.2.1.3.0.101011400|2|1
1.3.6.1.2.1.31.1.2.1.3.0.200000000|2|1
1.3.6.1.2.1.31.1.2.1.3.0.300000001|2|1
1.3.6.1.2.1.31.1.2.1.3.0.300000002|2|1
1.3.6.1.2.1.31.1.2.1.3.0.400000001|2|1
1.3.6.1.2.1.31.1.2.1.3.4.0|2|1
1.3.6.1.2.1.31.1.2.1.3.5.0|2|1
1.3.6.1.2.1.31.1.2.1.3.6.0|2|1
1.3.6.1.2.1.31.1.2.1.3.7.0|2|1
1.3.6.1.2.1.31.1.2.1.3.8.0|2|1
1.3.6.1.2.1.31.1.2.1.3.9.0|2|1
1.3.6.1.2.1.31.1.2.1.3.10.0|2|1
1.3.6.1.2.1.31.1.2.1.3.11.0|2|1
1.3.6.1.2.1.31.1.2.1.3.12.0|2|1
1.3.6.1.2.1.31.1.2.1.3.101011101.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011104.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011105.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011300.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011301.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011310.4|2|1
1.3.6.1.2.1.31.1.2.1.3.101011400.4|2|1
1.3.6.1.2.1.31.1.2.1.3.200000000.0|2|1
1.3.6.1.2.1.31.1.2.1.3.300000000.0|2|1
1.3.6.1.2.1.31.1.2.1.3.300000001.300000000|2|1
1.3.6.1.2.1.31.1.2.1.3.300000002.300000000|2|1
1.3.6.1.2.1.31.1.2.1.3.400000000.0|2|1
1.3.6.1.2.1.31.1.2.1.3.400000001.400000000|2|1
1.3.6.1.2.1.47.1.1.1.1.1.1|2|1
1.3.6.1.2.1.47.1.1.1.1.2.1|4|PA-VM
1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.25461.2.3.29
1.3.6.1.2.1.47.1.1.1.1.4.1|2|0
1.3.6.1.2.1.47.1.1.1.1.5.1|2|3
1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1
1.3.6.1.2.1.47.1.1.1.1.7.1|4|PA-VM
1.3.6.1.2.1.47.1.1.1.1.8.1|4|1.0
1.3.6.1.2.1.47.1.1.1.1.9.1|4|
1.3.6.1.2.1.47.1.1.1.1.10.1|4|9.0.7
1.3.6.1.2.1.47.1.1.1.1.11.1|4|015351000009999
1.3.6.1.2.1.47.1.1.1.1.12.1|4|Palo Alto Networks
1.3.6.1.2.1.47.1.1.1.1.13.1|4|PA-VM
1.3.6.1.2.1.47.1.1.1.1.14.1|4|
1.3.6.1.2.1.47.1.1.1.1.15.1|4|
1.3.6.1.2.1.47.1.1.1.1.16.1|2|2
1.3.6.1.2.1.47.1.1.1.1.17.1|4|0000000000000000
1.3.6.1.2.1.47.1.1.1.1.18.1|4|
1.3.6.1.4.1.25461.2.1.2.1.1.0|4|9.0.7
1.3.6.1.4.1.25461.2.1.2.1.3.0|4|015351000009999
1.3.6.1.4.1.25461.2.1.2.1.11.0|4|active
1.3.6.1.4.1.25461.2.1.2.1.12.0|4|passive
1.3.6.1.4.1.25461.2.1.2.1.13.0|4|active-passive
1.3.6.1.4.1.25461.2.1.2.2.1.0|4|PA-VM
1.3.6.1.4.1.25461.2.1.2.3.1.0|2|0
1.3.6.1.4.1.25461.2.1.2.3.3.0|2|38
1.3.6.1.4.1.25461.2.1.2.3.4.0|2|24
1.3.6.1.4.1.25461.2.1.2.3.5.0|2|14
1.3.6.1.4.1.25461.2.1.2.3.6.0|2|0
1.3.6.1.4.1.25461.2.1.2.3.7.0|2|14
1.3.6.1.4.1.25461.2.1.2.3.8.0|2|0
1.3.6.1.4.1.25461.2.1.2.5.1.3.0|2|0
File diff suppressed because it is too large Load Diff