-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPAN-TRAPS.my
5868 lines (5226 loc) · 219 KB
/
PAN-TRAPS.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-TRAPS.my
--
-- MIB for the extended common MIB objects implemented by all
-- Palo Alto devices.
-- ***********************************************
PAN-TRAPS DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Counter64, Counter32
FROM SNMPv2-SMI
-- MODULE-COMPLIANCE, OBJECT-GROUP
-- FROM SNMPv2-CONF
DisplayString, TimeStamp, TruthValue
FROM SNMPv2-TC
TcChassisType
FROM PAN-GLOBAL-TC
panModules, panCommonMib
FROM PAN-GLOBAL-REG
panCommonEventObjs, panCommonEventEventsV2
FROM PAN-COMMON-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB ;
panTrapMibsModule MODULE-IDENTITY
LAST-UPDATED "201502260000Z"
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 specific Palo Alto Networks products."
REVISION "201502260000Z"
DESCRIPTION "
Rev 3.0
Added Traps to sync up with the latest System log events.
Added 'InetAddressType' and 'InetAddress' types for
IP address fields in order to support both IPV4 and IPV6
addresses and deprecated the 'IpAddress' type."
REVISION "201407090000Z"
DESCRIPTION "
Rev 2.0
Added Traps to sync up with the latest System log events."
REVISION "201106271040Z"
DESCRIPTION "
Rev 1.0
Initial version of MIB module PAN-TRAPS."
::= { panModules 5 }
------------------------------------------------------------------------------
-- VARBINDS
------------------------------------------------------------------------------
--
--
panReceiveTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Time the log was received at the management plane."
::= { panCommonEventObjs 2}
--
--
panSerial OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Serial number of the device that generated the log."
::= { panCommonEventObjs 3}
--
--
panEventType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies type of log; Values are traffic, threat, config, system and hip-match."
::= { panCommonEventObjs 4}
--
--
panEventSubType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Subtype of traffic log; Values are start, end, drop, and deny."
::= { panCommonEventObjs 5}
--
--
panHost OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Host address of PAN device that generated the event.This field is deprecated.
Please use hostinetaddrtype and hostinetaddr."
::= { panCommonEventObjs 6}
--
--
panVsys OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Virtual System associated with the session."
::= { panCommonEventObjs 7}
--
--
panSeqno OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A 64-bit log entry identifier incremented sequentially. Each log type has a unique number space"
::= { panCommonEventObjs 8}
--
--
panActionflags OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A bit field indicating if the log was forwarded to Panorama."
::= { panCommonEventObjs 9}
--
--
panHostInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Host address type of PAN device that generated the event."
::= { panCommonEventObjs 10}
--
--
panHostInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Host address of PAN device that generated the event."
::= { panCommonEventObjs 11}
--
--
panSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session source IP address. This field is deprecated.
Please use panSourceInetAddrType and panSourceInetAddr."
::= { panCommonEventObjs 50}
--
--
panDestination OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session destination IP address. This field is deprecated.
Please use panDestinationInetAddrType and panDestinationInetAddr."
::= { panCommonEventObjs 51}
--
--
panNatSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Source NAT performed, the post-NAT Source IP address. This field is deprecated.
Please use panNatSourceInetAddrType and panNatSourceInetAddr."
::= { panCommonEventObjs 52}
--
--
panNatDestination OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Destination NAT performed, the post-NAT Destination IP address.
This field is deprecated.Please use panNatDestinationInetAddrType and panNatDestinationInetAddr."
::= { panCommonEventObjs 53}
--
--
panRule OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the rule that the session matched."
::= { panCommonEventObjs 54}
--
--
panSrcUser OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"User name of the user that initiated the session."
::= { panCommonEventObjs 55}
--
--
panDstUser OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"User name of the user to which the session was destined."
::= { panCommonEventObjs 56}
--
--
panApplication OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Application associated with the session."
::= { panCommonEventObjs 57}
--
--
panSourceZone OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Zone the session was sourced from."
::= { panCommonEventObjs 58}
--
--
panDestinationZone OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Zone the session was destined to."
::= { panCommonEventObjs 59}
--
--
panIngressInterface OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Interface that the session was sourced form."
::= { panCommonEventObjs 60}
--
--
panEgressInterface OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Interface that the session was destined to."
::= { panCommonEventObjs 61}
--
--
panLogForwardingProfile OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Log Forwarding Profile that was applied to the session"
::= { panCommonEventObjs 62}
--
--
panSessionID OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"An internal numerical identifier applied to each session."
::= { panCommonEventObjs 63}
--
--
panRepeatCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of sessions with same Source IP, Destination IP, Application, and Subtype seen within 5 seconds; Used for ICMP only."
::= { panCommonEventObjs 64}
--
--
panSourcePort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Source port utilized by the session."
::= { panCommonEventObjs 65}
--
--
panDestinationPort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Destination port utilized by the session."
::= { panCommonEventObjs 66}
--
--
panNatSourcePort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Post-NAT source port."
::= { panCommonEventObjs 67}
--
--
panNatDestinationPort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Post-NAT destination port."
::= { panCommonEventObjs 68}
--
--
panFlags OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"32 bit field that provides details on session."
::= { panCommonEventObjs 69}
--
--
panProtocol OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP protocol associated with the session"
::= { panCommonEventObjs 70}
--
--
panAction OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Action taken for the session; Values are allow or deny"
::= { panCommonEventObjs 71}
--
--
panTimeGenerated OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Time the log was generated on the data plane"
::= { panCommonEventObjs 72}
--
--
panSrcloc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Source country or Internal region for private addresses. Maximum length is 32 bytes."
::= { panCommonEventObjs 73}
--
--
panDstloc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Destination country or Internal region for private addresses. Maximum length is 32 bytes."
::= { panCommonEventObjs 74}
--
--
panSourceInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session source IP address type"
::= { panCommonEventObjs 75}
--
--
panSourceInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session source IP address."
::= { panCommonEventObjs 76}
--
--
panDestinationInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session destination IP address type."
::= { panCommonEventObjs 77}
--
--
panDestinationInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Original session destination IP address."
::= { panCommonEventObjs 78}
--
--
panNatSourceInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Source NAT performed, the post-NAT Source IP address type"
::= { panCommonEventObjs 79}
--
--
panNatSourceInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Source NAT performed, the post-NAT Source IP address."
::= { panCommonEventObjs 80}
--
--
panNatDestinationInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Destination NAT performed, the post-NAT Destination IP address type"
::= { panCommonEventObjs 81}
--
--
panNatDestinationInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"If Destination NAT performed, the post-NAT Destination IP address."
::= { panCommonEventObjs 82}
--
--
panTrafficBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of total bytes (transmit and receive) for the session."
::= { panCommonEventObjs 100}
--
--
panTrafficPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of total packets (transmit and receive) for the session."
::= { panCommonEventObjs 101}
--
--
panTrafficStartTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Time of session start."
::= { panCommonEventObjs 102}
--
--
panTrafficElapsed OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Elapsed time of the session."
::= { panCommonEventObjs 103}
--
--
panTrafficCategory OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"URL category associated with the session (if applicable)."
::= { panCommonEventObjs 104}
--
--
panTrafficSessionEndReason OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Session end reason ."
::= { panCommonEventObjs 105}
--
--
panConfigCmd OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Configuration command."
::= { panCommonEventObjs 150}
--
--
panConfigAdmin OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Admin name who issued configuration command."
::= { panCommonEventObjs 151}
--
--
panConfigClient OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Configuration client that generated command."
::= { panCommonEventObjs 152}
--
--
panConfigResult OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Configuration command execution result success/failure ."
::= { panCommonEventObjs 153}
--
--
panConfigPath OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Configuration path."
::= { panCommonEventObjs 154}
--
--
panThreatId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Palo Alto Networks identifier for the threat. It is a numerical identifier followed by a description in parenthesis for some Subtypes."
::= { panCommonEventObjs 200}
--
--
panThreatCategory OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Provides URL Category for URL Subtype; For other subtypes the value is 'any'."
::= { panCommonEventObjs 201}
--
--
panThreatContentType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Content type of the HTTP response data. Maximum length 32 bytes. Applicable only when Subtype is URL."
::= { panCommonEventObjs 202}
--
--
panThreatSeverity OBJECT-TYPE
SYNTAX INTEGER { unused (0), informational (1), low (2), medium (3), high (4), critical (5) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Severity associated with the threat; Values are informational, low, medium, high, critical."
::= { panCommonEventObjs 203}
--
--
panThreatDirection OBJECT-TYPE
SYNTAX INTEGER { client-to-server(0), server-to-client(1) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the direction of the attack, 'client-to-server' or 'server-to-client'."
::= { panCommonEventObjs 204}
--
--
panMiscellaneous OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..1024))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The actual URI when the subtype is URL; File name or file type when the subtype is file; and File name when the subtype is virus."
::= { panCommonEventObjs 205}
--
--
panPcapId OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A 64-bit unsigned integer denoting an ID that correlates threat pcaps with extended pcaps."
::= { panCommonEventObjs 206}
--
--
panFileDigest OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A hash of the file that was sent to the Wildfire cloud."
::= { panCommonEventObjs 207}
--
--
panCloud OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..1024))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"FQDN of the Wildfire cloud that analyzed the file."
::= { panCommonEventObjs 208}
--
--
panUrlIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Url Index for correlating related logs."
::= { panCommonEventObjs 209}
--
--
panUserAgent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..256))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"User Agent field in HTTP header."
::= { panCommonEventObjs 210}
--
--
panXff OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..128))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"X-Forwarded-For field in HTTP header."
::= { panCommonEventObjs 211}
--
--
panReferer OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..1024))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Referer field in HTTP header."
::= { panCommonEventObjs 212}
--
--
panSender OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..256))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Sender field in email header."
::= { panCommonEventObjs 213}
--
--
panSubject OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..256))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Subject field in email header."
::= { panCommonEventObjs 214}
--
--
panRecipient OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..1024))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Recipient field in email header."
::= { panCommonEventObjs 215}
--
--
panFileType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"File type in WildFire Submissions log."
::= { panCommonEventObjs 216}
--
--
panReportId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Palo Alto Networks identifier for the report."
::= { panCommonEventObjs 217}
--
--
panHipSourceUser OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"User name of the Source user."
::= { panCommonEventObjs 250}
--
--
panHipMachineName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..256))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the Users machine."
::= { panCommonEventObjs 251}
--
--
panHipSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"HIP Match source IP. This field is deprecated.
Please use panHipSourceInetAddrType and panHipSourceInetAddr."
::= { panCommonEventObjs 252}
--
--
panHipMatch OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the HIP Object or Profile."
::= { panCommonEventObjs 253}
--
--
panHipMatchType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies whether the HIP field represents a HIP Object or a HIP Profile."
::= { panCommonEventObjs 254}
--
--
panHipRepeatCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of times the HIP profile matched."
::= { panCommonEventObjs 255}
--
--
panHipOS OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"String representing the operating system of the client."
::= { panCommonEventObjs 256}
--
--
panHipSourceInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"HIP Match source IP type"
::= { panCommonEventObjs 257}
--
--
panHipSourceInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"HIP Match source IP"
::= { panCommonEventObjs 258}
--
--
panSystemEventId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"System log event ID"
::= { panCommonEventObjs 300}
--
--
panSystemObject OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"System log event object"
::= { panCommonEventObjs 301}
--
--
panSystemModule OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..16))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"System log event module"
::= { panCommonEventObjs 302}
--
--
panSystemSeverity OBJECT-TYPE
SYNTAX INTEGER { unused (0), informational (1), low (2), medium (3), high (4), critical (5) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"System log event severity"
::= { panCommonEventObjs 303}
--
--
panSystemDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..512))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"System log event description"
::= { panCommonEventObjs 304}
--
--
panCorrDG1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log DG Heirarchy 1"
::= { panCommonEventObjs 350}
--
--
panCorrDG2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log DG Heirarchy 2"
::= { panCommonEventObjs 351}
--
--
panCorrDG3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log DG Heirarchy 3"
::= { panCommonEventObjs 352}
--
--
panCorrDG4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log DG Heirarchy 4"
::= { panCommonEventObjs 353}
--
--
panCorrObjName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log Object Name"
::= { panCommonEventObjs 354}
--
--
panCorrObjID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log Object ID"
::= { panCommonEventObjs 355}
--
--
panCorrSeverity OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Correlation log event severity"
::= { panCommonEventObjs 356}