telemetry-snmp 0.1.0

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