1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
|
-- ***********************************************
-- PAN-COMMON-MIB.my
--
-- MIB for the common MIB objects implemented by all
-- Palo Alto devices.
-- ***********************************************
PAN-COMMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32
FROM SNMPv2-SMI
-- MODULE-COMPLIANCE, OBJECT-GROUP
-- FROM SNMPv2-CONF
TEXTUAL-CONVENTION
FROM SNMPv2-TC
DisplayString, TruthValue, TimeStamp
FROM SNMPv2-TC
TcChassisType
FROM PAN-GLOBAL-TC
panModules, panCommonMib
FROM PAN-GLOBAL-REG;
panCommonMibModule MODULE-IDENTITY
LAST-UPDATED "201409040000Z"
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 all Palo Alto Networks' products."
REVISION "201406300000Z"
DESCRIPTION "
Rev 2.3
Added entries for Log Collector."
REVISION "201409040000Z"
DESCRIPTION "
Rev 2.2
Added entries for Wildfire content versions.
Added entry for new platform PA 3060."
REVISION "201403060000Z"
DESCRIPTION "
Rev 2.1
Fixed a capitalization error with PanVsysEntry."
REVISION "201303010000Z"
DESCRIPTION "
Rev 2.0
Updated with panGlobalProtect and panVsysTable."
REVISION "201102091610Z"
DESCRIPTION "
Rev 1.0
Initial version of MIB module PAN-COMMON-MIB."
::= { panModules 3 }
FloatValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
" This data type is used to represent Float values."
SYNTAX OCTET STRING (SIZE(0..64))
panCommonConfMib OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for MIB conformance statements."
::= { panCommonMib 1 }
panCommonObjs OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common MIB objects."
::= { panCommonMib 2 }
panCommonEvents OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common MIB events."
::= { panCommonMib 3 }
-- Top level groups
panSys OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common system objects."
::= { panCommonObjs 1 }
panChassis OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common chassis information."
::= { panCommonObjs 2 }
panSession OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common session information."
::= { panCommonObjs 3 }
panMgmt OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Management plane information."
::= { panCommonObjs 4 }
panGlobalProtect OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common GlobalProtect information."
::= { panCommonObjs 5 }
panLogCollector OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Log Collector information."
::= { panCommonObjs 6 }
panDeviceLogging OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Device information."
::= { panCommonObjs 7 }
panSSLBroker OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree to capture ssl broker statistics."
::= { panCommonObjs 8 }
panGlobalCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for common Global counters."
::= { panSys 19 }
----------------------------------------------------------------------
-- System objects
panSysSwVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Full software version. The first two components of the full
version are the major and minor versions. The third component
indicates the maintenance release number and the fourth,
the build number."
::= { panSys 1 }
panSysHwVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version of the unit."
::= { panSys 2 }
panSysSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the unit. If not available,
an empty string is returned."
::= { panSys 3 }
panSysTimeZoneOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The offset in seconds from UTC of the system's time zone.
Values are negative for locations west of UTC and positive
for locations east of UTC."
::= { panSys 4 }
panSysDaylightSaving OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether daylight savings are in currently in effect for the
system's time zone."
::= { panSys 5 }
panSysVpnClientVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed VPN client package version. If
package is not installed, 0.0.0 is returned."
::= { panSys 6 }
panSysAppVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed application definition version. If
no application definition is found, 0 is returned."
::= { panSys 7 }
panSysAvVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed antivirus version. If no antivirus
is found, 0 is returned."
::= { panSys 8 }
panSysThreatVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed threat definition version. If no
threat definition is found, 0 is returned."
::= { panSys 9 }
panSysUrlFilteringVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed URL filtering version. If no URL
filtering is installed, 0 is returned."
::= { panSys 10 }
panSysHAState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current high-availability state."
::= { panSys 11 }
panSysHAPeerState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current peer high-availability state."
::= { panSys 12 }
panSysHAMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current high-availability mode (disabled,
active-passive, or active-active)."
::= { panSys 13 }
panSysUrlFilteringDatabase OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current installed URL filtering database
(surfcontrol, brightcloud, etc)"
::= { panSys 14 }
panSysGlobalProtectClientVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed global-protect client package version.
If package is not installed, 0.0.0 is returned."
::= { panSys 15 }
panSysOpswatDatafileVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed opswat database version.
If package is not installed, 0 is returned."
::= { panSys 16 }
panSysWildfireVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed wildfire content version. If no wildfire content
is found, 0 is returned."
::= { panSys 17 }
panSysWildfirePrivateCloudVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed wildfire private cloud content version. If no wpc
is found, 0 is returned."
::= { panSys 18 }
panSysAppReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed application definition release date. If
no release date is found, unknown is returned."
::= { panSys 20 }
panSysThreatReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed threat release date. If
no release date is found, unknown is returned."
::= { panSys 21 }
panSysAvReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed antivirus release date. If
no release date is found, unknown is returned."
::= { panSys 22 }
panSysWfReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently installed WildFire release date. If
no release date is found, unknown is returned."
::= { panSys 23 }
----------------------------------------------------------------------
-- Chassis
panChassisType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Chassis type for this Palo Alto device."
::= { panChassis 1 }
panMSeriesMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Series Mode for this Palo Alto device."
::= { panChassis 2 }
----------------------------------------------------------------------
-- Session
panSessionUtilization OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session table utilization percentage. Values should
be between 0 and 100."
::= { panSession 1 }
panSessionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of sessions supported."
::= { panSession 2 }
panSessionActive OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active sessions."
::= { panSession 3 }
panSessionActiveTcp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active TCP sessions."
::= { panSession 4 }
panSessionActiveUdp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active UDP sessions."
::= { panSession 5 }
panSessionActiveICMP OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active ICMP sessions."
::= { panSession 6 }
panSessionActiveSslProxy OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of active SSL proxy sessions."
::= { panSession 7 }
panSessionSslProxyUtilization OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSL proxy Session utilization percentage. Values should
be between 0 and 100."
::= { panSession 8 }
panVsysTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanVsysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VSYS table"
::= { panSession 9 }
panZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the current active connectionsPerSecond (CPS) values
for each zone present."
::= { panSession 10 }
panIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the current active connectionsPerSecond (CPS) values
for each interface present."
::= { panSession 11 }
----------------------------------------------------------------------
-- VsysTable
panVsysEntry OBJECT-TYPE
SYNTAX PanVsysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the Vsys's are added to the
entVsysTable."
INDEX { panVsysId }
::= { panVsysTable 1 }
PanVsysEntry ::= SEQUENCE {
panVsysId Integer32,
panVsysName DisplayString,
panVsysSessionUtilizationPct Integer32,
panVsysActiveSessions Integer32,
panVsysMaxSessions Integer32,
panVsysActiveTcpCps Integer32,
panVsysActiveUdpCps Integer32,
panVsysActiveOtherIpCps Integer32
}
panVsysId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vsys id"
::= { panVsysEntry 1 }
panVsysName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User assigned vsys name (empty string if not available)"
::= { panVsysEntry 2 }
panVsysSessionUtilizationPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vsys utilization percentage, if session limit is configured.
If session limit is not configured, this value is '0'"
::= { panVsysEntry 3 }
panVsysActiveSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active sessions on this Vsys"
::= { panVsysEntry 4 }
panVsysMaxSessions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max sessions on this Vsys, if session limit is configured.
If session limit is not configured, this value is '0'"
::= { panVsysEntry 5 }
panVsysActiveTcpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Tcp Connections per second for thie vSys."
::= { panVsysEntry 6 }
panVsysActiveUdpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Udp Connections per second for thie vSys."
::= { panVsysEntry 7 }
panVsysActiveOtherIpCps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Other IP Connections per second for thie vSys."
::= { panVsysEntry 8 }
----------------------------------------------------------------------
-- Mgmt
panMgmtPanoramaConnected OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Connection status to Panorama Server (connected, not-connected)"
::= { panMgmt 1 }
panMgmtPanorama2Connected OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Connection status to Panorama2 Server (connected, not-connected)"
::= { panMgmt 2 }
----------------------------------------------------------------------
-- GlobalProtect
panGPGatewayUtilization OBJECT-IDENTITY
STATUS current
DESCRIPTION
"GlobalProtect gateway utilization"
::= { panGlobalProtect 1 }
----------------------------------------------------------------------
-- GlobalProtect gateway utilization
panGPGWUtilizationPct OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobalProtect Gateway utilization percentage"
::= { panGPGatewayUtilization 1 }
panGPGWUtilizationMaxTunnels OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max tunnels allowed"
::= { panGPGatewayUtilization 2 }
panGPGWUtilizationActiveTunnels OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active tunnels"
::= { panGPGatewayUtilization 3 }
--------------------------------------------------------------------
-- Device Logging MIB
panDeviceLoggingLogRate OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for Device Logging Rate statistics."
::= { panDeviceLogging 1 }
panDeviceLoggingLogTypeStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingLogTypeStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the statistics for different log types on the Device."
::= { panDeviceLogging 2 }
panDeviceLoggingLogUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for Log Usage and days retained for different log types on the Device.
Log Disk Usage is avaiable as MB (in use)."
::= { panDeviceLogging 3 }
panDeviceLoggingExtFwd OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for tracking dropped logs as ther are forwarded from device."
::= { panDeviceLogging 4 }
panDeviceLoggingCollectorConnectionTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingCollectorConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for tracking various log collection entities connected to device."
::= { panDeviceLogging 5 }
---------------------------------------------------------------------------
-- panSSLBroker
panSSLBrokerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanSSLBrokerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Sub-tree for capturing ssl broker statistics and status."
::= { panSSLBroker 1 }
panSSLBrokerStatsEntry OBJECT-TYPE
SYNTAX PanSSLBrokerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of ssl broker statistics and status."
INDEX { index }
::= { panSSLBrokerStatsTable 1 }
PanSSLBrokerStatsEntry ::= SEQUENCE {
index Integer32,
chainName DisplayString,
avgLatency Integer32,
sessionCount Integer32
}
index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the ssl broker stats entry"
::= { panSSLBrokerStatsEntry 1 }
chainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of ssl broker chain object"
::= { panSSLBrokerStatsEntry 2 }
avgLatency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average latency value"
::= { panSSLBrokerStatsEntry 3 }
sessionCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active sessions"
::= { panSSLBrokerStatsEntry 4 }
---------------------------------------------------------------------------
-- panDeviceLoggingLogRate
panDeviceIncomingLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The incoming rate in logs/s on the Device."
::= { panDeviceLoggingLogRate 1 }
panDeviceWriteLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The write rate in logs/s on the Device."
::= { panDeviceLoggingLogRate 2 }
---------------------------------------------------------------------------
-- panDeviceLoggingLogTypeStatTable
panDeviceLoggingLogTypeStatEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingLogTypeStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panLcLogUsage are added to the panLcLogUsageTable."
INDEX { panDeviceLoggingDevice, panDeviceLoggingLogType }
::= { panDeviceLoggingLogTypeStatTable 1 }
PanDeviceLoggingLogTypeStatEntry ::= SEQUENCE {
panDeviceLoggingDevice DisplayString,
panDeviceLoggingDeviceIndex Integer32,
panDeviceLoggingLogType DisplayString,
panDeviceLoggingLogLastLogCreated TimeStamp,
panDeviceLoggingLogLastLogFwded TimeStamp,
panDeviceLoggingLogLastSeqNumberFwded Counter64,
panDeviceLoggingLogLastSeqNumberAck Counter64,
panDeviceLoggingLogTotalLogsFwded Counter64
}
panDeviceLoggingDevice OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device Information (Name or Serial Number)."
::= { panDeviceLoggingLogTypeStatEntry 1 }
panDeviceLoggingDeviceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index as mentioned in panDeviceLoggingCollectorConnection table."
::= { panDeviceLoggingLogTypeStatEntry 2 }
panDeviceLoggingLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of log."
::= { panDeviceLoggingLogTypeStatEntry 3 }
panDeviceLoggingLogLastLogCreated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time of the last log creation."
::= { panDeviceLoggingLogTypeStatEntry 4 }
panDeviceLoggingLogLastLogFwded OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which last log was forwarded."
::= { panDeviceLoggingLogTypeStatEntry 5 }
panDeviceLoggingLogLastSeqNumberFwded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sequence number of the last log that was forwarded."
::= { panDeviceLoggingLogTypeStatEntry 6 }
panDeviceLoggingLogLastSeqNumberAck OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sequence number of the last log that was acknowledged."
::= { panDeviceLoggingLogTypeStatEntry 7 }
panDeviceLoggingLogTotalLogsFwded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of logs forwarded."
::= { panDeviceLoggingLogTypeStatEntry 8 }
--------------------------------------------------------------------
-- PanDeviceLoggingLogUsageEntry
panDeviceLoggingLogUsageEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panDeviceLoggingLogUsage are added to the panDeviceLoggingLogUsageTable."
INDEX { panDeviceLoggingLogUsageLogType }
::= { panDeviceLoggingLogUsageTable 1 }
PanDeviceLoggingLogUsageEntry ::= SEQUENCE {
panDeviceLoggingLogUsageLogType DisplayString,
panDeviceLoggingDiskUsageDiskSpace FloatValue,
panDeviceLoggingDiskUsageRetention Unsigned32,
panDeviceLoggingDiskQuotaPct FloatValue,
panDeviceLoggingDiskQuota FloatValue
}
panDeviceLoggingLogUsageLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log type for Device. "
::= { panDeviceLoggingLogUsageEntry 1 }
panDeviceLoggingDiskUsageDiskSpace OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Usage (MB) for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 2 }
panDeviceLoggingDiskUsageRetention OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log Rentention for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 3 }
panDeviceLoggingDiskQuotaPct OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota percentage for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 4 }
panDeviceLoggingDiskQuota OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota for particular log type for Device. "
::= { panDeviceLoggingLogUsageEntry 5 }
----------------------------------------------------------------------
-- panDeviceLoggingExtFwd
panDeviceLoggingExtFwdCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count for logs forwarded."
::= { panDeviceLoggingExtFwd 1 }
panDeviceLoggingExtFwdQueueDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for logs dropped due to queue being full."
::= { panDeviceLoggingExtFwd 2 }
panDeviceLoggingExtFwdStatsSendErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for logs discarded due to sending error."
::= { panDeviceLoggingExtFwd 3 }
panDeviceLoggingExtFwdStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanDeviceLoggingExtFwdStatsEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This table shows the status of logs as they are forwarded via syslog, Traps, email and
http/https from this Device."
::= { panDeviceLoggingExtFwd 4 }
--------------------------------------------------------------------
-- panDeviceLoggingExtFwdStatsTable
panDeviceLoggingExtFwdStatsEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingExtFwdStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panDeviceLoggingExtFwdStats are added to panDeviceLoggingExtFwdStatsTable."
INDEX { panDeviceLoggingExtFwdStatsTableType }
::= { panDeviceLoggingExtFwdStatsTable 1 }
PanDeviceLoggingExtFwdStatsEntry ::= SEQUENCE {
panDeviceLoggingExtFwdStatsTableType DisplayString,
panDeviceLoggingExtFwdStatsTableEnqueueCount Counter64,
panDeviceLoggingExtFwdStatsTableSendCount Counter64,
panDeviceLoggingExtFwdStatsTableDropCount Counter64,
panDeviceLoggingExtFwdStatsTableQueueDepth Counter64,
panDeviceLoggingExtFwdStatsTable1minAvgSendRate Unsigned32
}
panDeviceLoggingExtFwdStatsTableType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of method used to forward logs."
::= { panDeviceLoggingExtFwdStatsEntry 1 }
panDeviceLoggingExtFwdStatsTableEnqueueCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs enqueued."
::= { panDeviceLoggingExtFwdStatsEntry 2 }
panDeviceLoggingExtFwdStatsTableSendCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs sent."
::= { panDeviceLoggingExtFwdStatsEntry 3 }
panDeviceLoggingExtFwdStatsTableDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs dropped."
::= { panDeviceLoggingExtFwdStatsEntry 4 }
panDeviceLoggingExtFwdStatsTableQueueDepth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for depth of queue."
::= { panDeviceLoggingExtFwdStatsEntry 5 }
panDeviceLoggingExtFwdStatsTable1minAvgSendRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for average send rate over 1 minute interval."
::= { panDeviceLoggingExtFwdStatsEntry 6 }
-------------------------------------------------------------------
-- panDeviceLoggingCollectorConnectionTable
panDeviceLoggingCollectorConnectionEntry OBJECT-TYPE
SYNTAX PanDeviceLoggingCollectorConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panDeviceLogging are added to the panDeviceLoggingCollectorConnectionTable."
INDEX { panDeviceLoggingCollectorConnectionIP }
::= { panDeviceLoggingCollectorConnectionTable 1 }
PanDeviceLoggingCollectorConnectionEntry ::= SEQUENCE {
panDeviceLoggingCollectorConnectionType DisplayString,
panDeviceLoggingCollectorConnectionIP DisplayString,
panDeviceLoggingCollectorConnectionHostname DisplayString,
panDeviceLoggingCollectorConnectionStatus DisplayString
}
panDeviceLoggingCollectorConnectionType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of log collection entity (CMS/LC)."
::= { panDeviceLoggingCollectorConnectionEntry 1 }
panDeviceLoggingCollectorConnectionIP OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP of log collection entity (CMS/LC) for non-7K and Gryphon.
Will display connection ID for 7K and Gryphon."
::= { panDeviceLoggingCollectorConnectionEntry 2 }
panDeviceLoggingCollectorConnectionHostname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hostname of log collection entity (CMS/LC)."
::= { panDeviceLoggingCollectorConnectionEntry 3 }
panDeviceLoggingCollectorConnectionStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection status of log collection entity (CMS/LC)."
::= { panDeviceLoggingCollectorConnectionEntry 4 }
----------------------------------------------------------------------
-- LogCollector
panLcStat OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Sub-tree for the Log collection statistics."
::= { panLogCollector 1 }
----------------------------------------------------------------------
-- LogCollector Stats
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 deprecated
DESCRIPTION "
Sub-tree for the Log Duration on the Log Collector. Log
Duration is Expressed in Days of storage."
::= { panLcStat 2 }
panLcDiskUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcDiskUsageEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "
Sub-tree for the Log Disk Usage on the Log Collector. Log
Disk Usage is available as MB in use."
::= { panLcStat 3 }
panLcLogUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the Log Usage and data retention on the Log Collector(non localDB).
Log Disk Usage is available as MB in use."
::= { panLcStat 4 }
panLocalLogUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLocalLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for the Log Usage and data retention on the Log Collector(localDB).
Log Disk Usage is available as MB in use."
::= { panLcStat 5 }
panLcDiskIOPSTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcDiskIOPSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "
Sub-tree for Log Disk I/O throughput on the Log Collector and Panorama."
::= { panLcStat 6 }
panLcLogDurationTraffic OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
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 deprecated
DESCRIPTION
"The Log duration (in days) for the userid logs on the Log Collector"
::= { panLcLogDuration 11 }
panLcDiskUsageEntry OBJECT-TYPE
SYNTAX PanLcDiskUsageEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Entries are created when the panLcDiskUsage are added to the
panLcDiskUsageTable."
INDEX { panLcDiskUsageId }
::= { panLcDiskUsageTable 1 }
PanLcDiskUsageEntry ::= SEQUENCE {
panLcDiskUsageId Integer32,
panLcDiskUsage Unsigned32
}
panLocalLogUsageEntry OBJECT-TYPE
SYNTAX PanLocalLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panLocalLogUsage are added to the panLocalLogUsageTable."
INDEX { panLcLogType }
::= { panLocalLogUsageTable 1 }
PanLocalLogUsageEntry ::= SEQUENCE {
panLocalLogType DisplayString,
panLocalDiskUsageDiskSpace FloatValue,
panLocalDiskUsageRetention Unsigned32,
panLocalDiskQuota FloatValue,
panLocalDiskQuotaPct FloatValue
}
panLocalLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log type for Log Collector. "
::= { panLocalLogUsageEntry 1 }
panLocalDiskUsageDiskSpace OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Usage (in MB) for particular log type for Log Collector. "
::= { panLocalLogUsageEntry 2 }
panLocalDiskUsageRetention OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log Rentention for particular log type for Log Collector. "
::= { panLocalLogUsageEntry 3 }
panLocalDiskQuota OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota (in MB) for particular log type for Log Collector. "
::= { panLocalLogUsageEntry 4 }
panLocalDiskQuotaPct OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota Percentage for particular log type for Log Collector. "
::= { panLocalLogUsageEntry 5 }
panLcDiskIOPSEntry OBJECT-TYPE
SYNTAX PanLcDiskIOPSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panLcDiskIOPSEntry are added to the panLcDiskIOPSTable."
INDEX { panLcDiskIOPSId }
::= { panLcDiskIOPSTable 1 }
PanLcDiskIOPSEntry ::= SEQUENCE {
panLcDiskIOPSId DisplayString,
panLcDiskIORead5min Counter64,
panLcDiskIOWrite5min Counter64
}
panLcDiskIOPSId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk number for Log Collector or Panorama. "
::= { panLcDiskIOPSEntry 1 }
panLcDiskIORead5min OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk read rate over a span of 5 minute interval."
::= { panLcDiskIOPSEntry 2 }
panLcDiskIOWrite5min OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk write rate over a span of 5 minute interval."
::= { panLcDiskIOPSEntry 3 }
panLcLogUsageEntry OBJECT-TYPE
SYNTAX PanLcLogUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panLcLogUsage are added to the panLcLogUsageTable."
INDEX { panLcLogType }
::= { panLcLogUsageTable 1 }
PanLcLogUsageEntry ::= SEQUENCE {
panLcLogType DisplayString,
panLcDiskUsageDiskSpacePct FloatValue,
panLcDiskUsageRetention Unsigned32,
panLcDiskQuotaPct FloatValue
}
panLcLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log type for Log Collector. "
::= { panLcLogUsageEntry 1 }
panLcDiskUsageDiskSpacePct OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Usage Percentage for particular log type for Log Collector
aggregated over all disks. "
::= { panLcLogUsageEntry 2 }
panLcDiskUsageRetention OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log Rentention for particular log type for Log Collector. "
::= { panLcLogUsageEntry 3 }
panLcDiskQuotaPct OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disk Quota Percentage for particular log type for Log Collector
aggregated over all disks. "
::= { panLcLogUsageEntry 4 }
panLcDiskUsageId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The Log disk id"
::= { panLcDiskUsageEntry 1 }
panLcDiskUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The Log disk usage on the Log Collector"
::= { panLcDiskUsageEntry 2 }
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"
::= { panLogCollector 2 }
panLcLogFwdStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcLogFwdStatsEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This table shows the status of logs as they are forwarded via syslog, Traps, email and
http/https from this Log Collector."
::= { panLogCollector 3 }
------------------------------------------------------------------
-- panLcLogFwdStatsTable
panLcLogFwdStatsEntry OBJECT-TYPE
SYNTAX PanLcLogFwdStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panLcLogFwdStats are added to panLcLogFwdStatsTable."
INDEX { panLcLogFwdStatsTableType }
::= { panLcLogFwdStatsTable 1 }
PanLcLogFwdStatsEntry ::= SEQUENCE {
panLcLogFwdStatsTableType DisplayString,
panLcLogFwdStatsTableEnqueueCount Counter64,
panLcLogFwdStatsTableSendCount Counter64,
panLcLogFwdStatsTableDropCount Counter64,
panLcLogFwdStatsTableQueueDepth Counter64
}
panLcLogFwdStatsTableType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of method used to forward logs."
::= { panLcLogFwdStatsEntry 1 }
panLcLogFwdStatsTableEnqueueCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs enqueued."
::= { panLcLogFwdStatsEntry 2 }
panLcLogFwdStatsTableSendCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs sent."
::= { panLcLogFwdStatsEntry 3 }
panLcLogFwdStatsTableDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for number of logs dropped."
::= { panLcLogFwdStatsEntry 4 }
panLcLogFwdStatsTableQueueDepth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter for depth of queue."
::= { panLcLogFwdStatsEntry 5 }
-- panLcLoggingConnectedDeviceTable
panLcLoggingConnectedDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcLoggingConnectedDeviceEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This table shows the details of all devices logging to this Log Collector."
::= { panLogCollector 4 }
panLcLoggingConnectedDeviceEntry OBJECT-TYPE
SYNTAX PanLcLoggingConnectedDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panLcLoggingConnectedDevice are added to panLcLoggingConnectedDeviceTable."
INDEX { panLcLoggingConnectedDeviceConnectionId }
::= { panLcLoggingConnectedDeviceTable 1 }
PanLcLoggingConnectedDeviceEntry ::= SEQUENCE {
panLcLoggingConnectedDeviceName DisplayString,
panLcLoggingConnectedDeviceConnectionId DisplayString,
panLcLoggingConnectedIdLogRate Unsigned32
}
panLcLoggingConnectedDeviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the device being polled."
::= { panLcLoggingConnectedDeviceEntry 1 }
panLcLoggingConnectedDeviceConnectionId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection id of the device being polled."
::= { panLcLoggingConnectedDeviceEntry 2 }
panLcLoggingConnectedIdLogRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Logging rate for the connection."
::= { panLcLoggingConnectedDeviceEntry 3 }
-- panLcLoggingDeviceTable
panLcLoggingDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PanLcLoggingDeviceEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This table shows the details of logs forwarded by devices logging to this Log Collector."
::= { panLogCollector 5 }
panLcLoggingDeviceEntry OBJECT-TYPE
SYNTAX PanLcLoggingDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panLcLoggingDevice are added to panLcLoggingDeviceTable."
INDEX { panLcLoggingDeviceConnectionId,
panLcLoggingLogType }
::= { panLcLoggingDeviceTable 1 }
PanLcLoggingDeviceEntry ::= SEQUENCE {
panLcLoggingDeviceConnectionId DisplayString,
panLcLoggingLogType DisplayString,
panLcLogTypeLastLogRecd TimeStamp,
panLcLogTypeLastSeqNumRecd Counter64,
panLcLogTypeLastLogGen TimeStamp
}
panLcLoggingDeviceConnectionId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection id of the device being polled."
::= { panLcLoggingDeviceEntry 1 }
panLcLoggingLogType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Log Type of the log being polled."
::= { panLcLoggingDeviceEntry 2 }
panLcLogTypeLastLogRecd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which the last log was received."
::= { panLcLoggingDeviceEntry 3 }
panLcLogTypeLastSeqNumRecd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last sequence number received for a type of log."
::= { panLcLoggingDeviceEntry 4 }
panLcLogTypeLastLogGen OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time at which the last log was generated."
::= { panLcLoggingDeviceEntry 5 }
----------------------------------------------------------------------
-- Events
panCommonEventObjs OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Branch for objects meant only to be sent in event varbinds."
::= { panCommonEvents 1 }
panCommonEventEvents OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Branch for the events themselves."
::= { panCommonEvents 2 }
panCommonEventEventsV2 OBJECT-IDENTITY
STATUS current
DESCRIPTION "
Branch for SNMPv2 events. The OIDs for SNMPv2 events should
have a zero as the next-to-last sub-identifier (as specified
in RFC1902)."
::= { panCommonEventEvents 0 }
-- Objects sent only in events
panCommonEventDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"String that provides a textual description of the event."
::= { panCommonEventObjs 1 }
-- Event descriptions
panCommonEventLog NOTIFICATION-TYPE
OBJECTS { panCommonEventDescr }
STATUS current
DESCRIPTION
"A config/system/firewall/threat log"
::= { panCommonEventEventsV2 1 }
----------------------------------------------------------------------
-- GlobalCounters
panAhoSw OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total usage of software for AHO"
::= { panGlobalCounters 1 }
panDfaSw OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dfa match using software"
::= { panGlobalCounters 2 }
panFlowHostServiceAllow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device management session allowed"
::= { panGlobalCounters 3 }
panHaPathmonSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HA path-monitoring packets sent"
::= { panGlobalCounters 4 }
panAhoFpga OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total requests to FPGA for AHO"
::= { panGlobalCounters 5 }
panDfaFpga OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total requests to FPGA for DFA"
::= { panGlobalCounters 6 }
panFpgaPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The packets held because of requests to FPGA"
::= { panGlobalCounters 7 }
panGlobalCountersDOSCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sub-tree for Global DOS counters"
::= { panGlobalCounters 8 }
panGlobalCountersDropCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sub-tree for Global Drop counters"
::= { panGlobalCounters 9 }
panGlobalCountersIPFragmentationCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sub-tree for Global IPFragmentation counters"
::= { panGlobalCounters 10 }
panGlobalCountersTCPState OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sub-tree for Global TCPState counters"
::= { panGlobalCounters 11 }
panGlobalCountersTunnelInspect OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sub-tree for Global Tunnel (GRE, IPSEC and GTP) counters"
::= { panGlobalCounters 12 }
----------------------------------------------------------------------
-- Global DOS Counters
panFlowDosAgMaxSessLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session limit reached for aggregate profile, drop session"
::= { panGlobalCountersDOSCounters 1 }
panFlowDosBlkNumEntries OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in DOS block table"
::= { panGlobalCountersDOSCounters 2 }
panFlowDosClMaxSessLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session limit reached for classified profile, drop session"
::= { panGlobalCountersDOSCounters 3 }
panFlowDosClSyncookieAckErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP SYN cookies: Invalid ACKs received, classified profile"
::= { panGlobalCountersDOSCounters 4 }
panFlowDosClSyncookieAckRcv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP SYN cookies: ACKs to cookies received, classified profile"
::= { panGlobalCountersDOSCounters 5 }
panFlowDosClSyncookieBlkDur OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Flagged for blocking and under block duration for cl"
::= { panGlobalCountersDOSCounters 6 }
panFlowDosClSyncookieMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet dropped: SYN cookies maximum threshold reached, classified pro"
::= { panGlobalCountersDOSCounters 7 }
panFlowDosClSyncookieSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP SYN cookies: cookies sent, classified profile"
::= { panGlobalCountersDOSCounters 8 }
panFlowMeterVsysThrottle OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session metering: sessions throttled by vsys configuration"
::= { panGlobalCountersDOSCounters 9 }
panFlowPolicyDeny OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session setup: denied by policy"
::= { panGlobalCountersDOSCounters 10 }
panFlowPolicyNat OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session setup: source NAT IP/port allocation error"
::= { panGlobalCountersDOSCounters 11 }
panFlowScanDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session setup: denied by scan detection"
::= { panGlobalCountersDOSCounters 12 }
panFlowDosDropIpBlocked OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Flagged for blocking and under block duration by oth"
::= { panGlobalCountersDOSCounters 13 }
panFlowDosRedIcmp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Zone protection protocol 'icmp' RED"
::= { panGlobalCountersDOSCounters 14 }
panFlowDosRedIcmp6 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Zone protection protocol 'icmpv6' RED"
::= { panGlobalCountersDOSCounters 15 }
panFlowDosRedIp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Zone protection protocol 'other-ip' RED"
::= { panGlobalCountersDOSCounters 16 }
panFlowDosRedTcp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Zone protection protocol 'tcp-syn' RED"
::= { panGlobalCountersDOSCounters 17 }
panFlowDosRedUdp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Zone protection protocol 'udp' RED"
::= { panGlobalCountersDOSCounters 18 }
panFlowDosRuleAgBlkDur OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Flagged for blocking and under block duration for ag"
::= { panGlobalCountersDOSCounters 19 }
panFlowDosRuleAgRedAct OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Activate aggregate RED threshold reached, random ear"
::= { panGlobalCountersDOSCounters 20 }
panFlowDosRuleAgRedMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Maximal aggregate RED threshold reached"
::= { panGlobalCountersDOSCounters 21 }
panFlowDosRuleDeny OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Denied action by DoS policy"
::= { panGlobalCountersDOSCounters 22 }
panFlowDosRuleDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Rate limited or IP blocked"
::= { panGlobalCountersDOSCounters 23 }
panFlowDosRuleDropAggr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: due to aggregate rate limiting"
::= { panGlobalCountersDOSCounters 24 }
panFlowDosRuleDropClBlkDur OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Flagged for blocking and under block duration for cl"
::= { panGlobalCountersDOSCounters 25 }
panFlowDosRuleDropClRedAct OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Activate classified RED threshold reached, random ea"
::= { panGlobalCountersDOSCounters 26 }
panFlowDosRuleDropClRedMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Maximal classified RED threshold reached"
::= { panGlobalCountersDOSCounters 27 }
panFlowDosRuleDropClassified OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: due to classified rate limiting"
::= { panGlobalCountersDOSCounters 28 }
panFlowDosSyncookieBlkDur OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Flagged for blocking and under block duration for ag"
::= { panGlobalCountersDOSCounters 29 }
panFlowDosSyncookieMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet dropped: SYN cookies maximum threshold reached, aggregate prof"
::= { panGlobalCountersDOSCounters 30 }
panFlowDosZoneRedAct OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Activate zone RED threshold reached, random early dr"
::= { panGlobalCountersDOSCounters 31 }
panFlowDosZoneRedMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: Maximal zone RED threshold reached"
::= { panGlobalCountersDOSCounters 32 }
panFlowDosBlkSwEntries OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in DOS Software block table"
::= { panGlobalCountersDOSCounters 33 }
panFlowDosBlkHwEntries OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in DOS Hardware block table"
::= { panGlobalCountersDOSCounters 34 }
panFlowDosSyncookieNotTcpSyn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP SYN cookies:TCP SYN cookie not SYN"
::= { panGlobalCountersDOSCounters 35 }
panFlowDosSyncookieNotTcpSynAck OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP SYN cookies:TCP SYN cookie not SYN-ACK"
::= { panGlobalCountersDOSCounters 36 }
panFlowDosPfIpspoof OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-ip-spoof'"
::= { panGlobalCountersDOSCounters 37 }
panFlowDosPfIpfrag OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-ip-frag'"
::= { panGlobalCountersDOSCounters 38 }
panFlowDosPfPing0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-icmp-ping-zero-id'"
::= { panGlobalCountersDOSCounters 39 }
panFlowDosPfIcmpfrag OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-icmp-frag'"
::= { panGlobalCountersDOSCounters 40 }
panFlowDosPfIcmplpkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-icmp-large-packet'"
::= { panGlobalCountersDOSCounters 41 }
panFlowDosPfIcmperr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-icmp-error'"
::= { panGlobalCountersDOSCounters 42 }
panFlowDosPfNoreplyttl OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'suppress-icmp-timeexceeded'"
::= { panGlobalCountersDOSCounters 43 }
panFlowDosPfNoreplyneedfrag OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'suppress-icmp-needfrag'"
::= { panGlobalCountersDOSCounters 44 }
panFlowDosPfStrictsource OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-strict-source-routing'"
::= { panGlobalCountersDOSCounters 45 }
panFlowDosPfLoosesource OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-loose-source-routing'"
::= { panGlobalCountersDOSCounters 46 }
panFlowDosPfTimestamp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-timestamp'"
::= { panGlobalCountersDOSCounters 47 }
panFlowDosPfRecordroute OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-record-route'"
::= { panGlobalCountersDOSCounters 48 }
panFlowDosPfSecurity OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-security'"
::= { panGlobalCountersDOSCounters 49 }
panFlowDosPfSatnetid OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-stream-id'"
::= { panGlobalCountersDOSCounters 50 }
panFlowDosPfUnknown OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-unknown-option'"
::= { panGlobalCountersDOSCounters 51 }
panFlowDosPfBadoption OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-malformed-option'"
::= { panGlobalCountersDOSCounters 52 }
panFlowDosPfTcpoverlappingmismatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-overlapping-tcp-segment-mismatch'"
::= { panGlobalCountersDOSCounters 53 }
panFlowDosPfStrictip OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'strict-ip-check'"
::= { panGlobalCountersDOSCounters 54 }
panFlowDosPfTcpsplithandshake OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-tcp-split-handshake'"
::= { panGlobalCountersDOSCounters 55 }
panFlowDosPfTcpsyndata OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-tcp-syn-with-data'"
::= { panGlobalCountersDOSCounters 56 }
panFlowDosPfTcpsynackdata OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'discard-tcp-synack-with-data'"
::= { panGlobalCountersDOSCounters 57 }
panFlowDosIp6Route0 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-0'"
::= { panGlobalCountersDOSCounters 58 }
panFlowDosIp6Route1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-1'"
::= { panGlobalCountersDOSCounters 59 }
panFlowDosIp6Route3 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-3'"
::= { panGlobalCountersDOSCounters 60 }
panFlowDosIp6Route4to252 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-4-252'"
::= { panGlobalCountersDOSCounters 61 }
panFlowDosIp6Route253 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-253'"
::= { panGlobalCountersDOSCounters 62 }
panFlowDosIp6Route254 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-254'"
::= { panGlobalCountersDOSCounters 63 }
panFlowDosIp6Route255 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-header-255'"
::= { panGlobalCountersDOSCounters 64 }
panFlowDosIp6Ip4cmpt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'ipv4-compatible-address'"
::= { panGlobalCountersDOSCounters 65 }
panFlowDosIp6Acast OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'anycast-source'"
::= { panGlobalCountersDOSCounters 66 }
panFlowDosIp6OptionsInvalidIPv6 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'options-invalid-ipv6-discard'"
::= { panGlobalCountersDOSCounters 67 }
panFlowDosIp6Icmpv6ErrorInvalid OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'icmpv6-too-big-small-mtu-discard'"
::= { panGlobalCountersDOSCounters 68 }
panFlowDosIp6NeedlessIpv6FragHdr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'needless-fragment-hdr'"
::= { panGlobalCountersDOSCounters 69 }
panFlowDosIp6RsvdSet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'reserved-field-set-discard'"
::= { panGlobalCountersDOSCounters 70 }
panFlowDosIPv6ExtHdrHopByHop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'hop-by-hop-hdr'"
::= { panGlobalCountersDOSCounters 71 }
panFlowDosip6IPv6ExtHdrRouting OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'routing-hdr'"
::= { panGlobalCountersDOSCounters 72 }
panFlowDosIp6IPv6ExtHdrDestOpt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Zone protection option 'dest-option-hdr'"
::= { panGlobalCountersDOSCounters 73 }
panFlowDosPbpDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped:Dropped by packet buffer protection RED"
::= { panGlobalCountersDOSCounters 74 }
panFlowDosCurrSessIncrFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unable to increment current session count on session create"
::= { panGlobalCountersDOSCounters 75 }
panFlowDosCurrSessDecrFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unable to decrement current session count on session delete"
::= { panGlobalCountersDOSCounters 76 }
-------------------------------------------------------------------------------------------------------
-- Pan Global Drop Counters
panFlowFwdL3TtlZero OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped: IP TTL reaches zero"
::= { panGlobalCountersDropCounters 1 }
panFlowMeterHostThrottle OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session metering: sessions throttled by management session threshold"
::= { panGlobalCountersDropCounters 2 }
panFlowHostServiceDeny OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device management session denied"
::= { panGlobalCountersDropCounters 3 }
panFlowHostServiceUnknown OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session discarded: unknown application to control plane"
::= { panGlobalCountersDropCounters 4 }
panPktAllocFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet allocation error"
::= { panGlobalCountersDropCounters 5 }
panPktAllocFailureCos OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet allocation error due to QoS control"
::= { panGlobalCountersDropCounters 6 }
panSessionDiscard OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session set to discard by security policy check"
::= { panGlobalCountersDropCounters 7 }
------------------------------------------------------------------------------------------------------
-- Pan Global IPFragmentation Counters
panFlowIpfragFragErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet dropped: IP fragmentation error"
::= { panGlobalCountersIPFragmentationCounters 1 }
panFlowIpfragRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP fragments received"
::= { panGlobalCountersIPFragmentationCounters 2 }
------------------------------------------------------------------------------------------------------
-- Pan Global TCP State Counters
panTcpAllocWqeFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"wqe allocation failure in tcp"
::= { panGlobalCountersTCPState 1 }
panTcpDeny OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"session denied because of failure in tcp reassembly"
::= { panGlobalCountersTCPState 2 }
panTcpDropOutOfWnd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"out-of-window packets dropped"
::= { panGlobalCountersTCPState 3 }
panTcpDropPacket OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packets dropped because of failure in tcp reassembly"
::= { panGlobalCountersTCPState 4 }
panFlowActionClose OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP sessions closed via injecting RST"
::= { panGlobalCountersTCPState 5 }
panFlowActionReset OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP clients reset via responding RST"
::= { panGlobalCountersTCPState 6 }
panFlowTcpNonSyn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Non-SYN TCP packets without session match"
::= { panGlobalCountersTCPState 7 }
panTcpExceedSegLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"packets dropped due to the limitation on global tcp out-of-order pack"
::= { panGlobalCountersTCPState 8 }
------------------------------------------------------------------------------------------------------
-- Pan Global Tunnel State Counters
panFlowTciGreDecapSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total GRE sessions tunnel inspected"
::= { panGlobalCountersTunnelInspect 1 }
panFlowTciGreDecapFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total GRE sessions for failed tunnel inspected"
::= { panGlobalCountersTunnelInspect 2 }
panFlowTciGreDecapUnknown OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total unknown tunnel inspection packets in GRE tunnel [passed|dropped]"
::= { panGlobalCountersTunnelInspect 3 }
panFlowTciIpsecDecapSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Ipsec sessions tunnel inspected"
::= { panGlobalCountersTunnelInspect 4 }
panFlowTciIpsecDecapFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IPSEC sessions for failed tunnel inspected"
::= { panGlobalCountersTunnelInspect 5 }
panFlowTciIpsecDecapUnknown OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total unknown tunnel inspection packets in IPSEC tunnel [passed|dropped]"
::= { panGlobalCountersTunnelInspect 6 }
panFlowTciGtpDecapSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total GTP sessions tunnel inspected"
::= { panGlobalCountersTunnelInspect 7 }
panFlowTciGtpDecapFailed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total GTP sessions for failed tunnel inspected"
::= { panGlobalCountersTunnelInspect 8 }
panFlowTciGtpDecapUnknown OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total unknown tunnel inspection packets in GTP tunnel[passed|dropped]"
::= { panGlobalCountersTunnelInspect 9 }
---------------------------------------------------------------
-- panIfTable
panIfEntry OBJECT-TYPE
SYNTAX PanIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panIfCPS are added to the panIfCPSTable."
INDEX { ifIndex }
::= { panIfTable 1 }
PanIfEntry ::= SEQUENCE {
ifIndex Unsigned32,
ifDescr DisplayString,
panIfActiveTcpCps Unsigned32,
panIfActiveUdpCps Unsigned32,
panIfActiveOtherIpCps Unsigned32
}
ifIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the interface"
::= { panIfEntry 1 }
ifDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description (name) of the interface"
::= { panIfEntry 2 }
panIfActiveTcpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active TCP connections per second for this interface."
::= { panIfEntry 3 }
panIfActiveUdpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active UDP connections per second for this interface."
::= { panIfEntry 4 }
panIfActiveOtherIpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Other IP connections per second for this interface."
::= { panIfEntry 5 }
---------------------------------------------------------------
-- panZoneTable
panZoneEntry OBJECT-TYPE
SYNTAX PanZoneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when panZoneCPS are added to the panZoneCPSTable."
INDEX { ifIndex }
::= { panZoneTable 1 }
PanZoneEntry ::= SEQUENCE {
panZoneName DisplayString,
panZoneActiveTcpCps Unsigned32,
panZoneActiveUdpCps Unsigned32,
panZoneActiveOtherIpCps Unsigned32
}
panZoneName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Zone name for the interface"
::= { panZoneEntry 1 }
panZoneActiveTcpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active TCP connections per second for this zone."
::= { panZoneEntry 2 }
panZoneActiveUdpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active UDP connections per second for this zone."
::= { panZoneEntry 3 }
panZoneActiveOtherIpCps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active Other IP connections per second for this zone."
::= { panZoneEntry 4 }
--------------------------------------------------------------------------------------------------------
END
|