-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPAN-COMMON-MIB.my
1201 lines (1035 loc) · 34.5 KB
/
PAN-COMMON-MIB.my
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
-- ***********************************************
-- 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
DisplayString, TruthValue
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 }
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 }
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 }
----------------------------------------------------------------------
-- 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 }
----------------------------------------------------------------------
-- 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
}
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 }
----------------------------------------------------------------------
-- 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 }
----------------------------------------------------------------------
-- 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 current
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 current
DESCRIPTION "
Sub-tree for the Log Disk Usage on the Log Collector. Log
Disk Usage is available as MB in use."
::= { panLcStat 3 }
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 }
panLcDiskUsageEntry OBJECT-TYPE
SYNTAX PanLcDiskUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries are created when the panLcDiskUsage are added to the
panLcDiskUsageTable."
INDEX { panLcDiskUsageId }
::= { panLcDiskUsageTable 1 }
PanLcDiskUsageEntry ::= SEQUENCE {
panLcDiskUsageId Integer32,
panLcDiskUsage Unsigned32
}
panLcDiskUsageId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Log disk id"
::= { panLcDiskUsageEntry 1 }
panLcDiskUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
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 }
----------------------------------------------------------------------
-- 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 }
----------------------------------------------------------------------
-- 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