1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
|
-- $OpenBSD: OPENBSD-PF-MIB.txt,v 1.5 2015/06/10 10:03:59 mikeb Exp $
--
-- Copyright (c) 2004-2013 Joel Knight <knight.joel@gmail.com>
--
-- Permission to use, copy, modify, and distribute this document for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE DOCUMENT IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS DOCUMENT INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS DOCUMENT.
OPENBSD-PF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE,
Counter32, Counter64, Unsigned32, Integer32, IpAddress,
TimeTicks, enterprises
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
openBSD
FROM OPENBSD-BASE-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF;
pfMIBObjects MODULE-IDENTITY
LAST-UPDATED "201506091728Z"
ORGANIZATION "OpenBSD"
CONTACT-INFO "
Author: Joel Knight
email: knight.joel@gmail.com
www: http://www.packetmischief.ca/openbsd-snmp-mibs/
"
DESCRIPTION "The MIB module for gathering information from
OpenBSD's packet filter.
"
REVISION "201506091728Z"
DESCRIPTION "Add separate counter for failed 'route-to' applications"
REVISION "201308310446Z"
DESCRIPTION "Add pf(4) table byte/packet counters for 'match' rules"
REVISION "201302242033Z"
DESCRIPTION "Add separate counter for failed translations"
REVISION "201201260000Z"
DESCRIPTION "Add OPENBSD-PF-MIB to OpenBSD's snmpd"
::= { openBSD 1 }
-- define the sections of the MIB
pfInfo OBJECT IDENTIFIER ::= { pfMIBObjects 1 }
pfCounters OBJECT IDENTIFIER ::= { pfMIBObjects 2 }
pfStateTable OBJECT IDENTIFIER ::= { pfMIBObjects 3 }
pfLogInterface OBJECT IDENTIFIER ::= { pfMIBObjects 4 }
pfSrcTracking OBJECT IDENTIFIER ::= { pfMIBObjects 5 }
pfLimits OBJECT IDENTIFIER ::= { pfMIBObjects 6 }
pfTimeouts OBJECT IDENTIFIER ::= { pfMIBObjects 7 }
pfInterfaces OBJECT IDENTIFIER ::= { pfMIBObjects 8 }
pfTables OBJECT IDENTIFIER ::= { pfMIBObjects 9 }
pfLabels OBJECT IDENTIFIER ::= { pfMIBObjects 10 }
pfsyncStats OBJECT IDENTIFIER ::= { pfMIBObjects 11 }
-- pfInfo
pfRunning OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether pf is enabled or not."
::= { pfInfo 1 }
pfRuntime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "1/100th of a Second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how long pf has been enabled. If pf is not
enabled, indicates how long pf has been disabled. If pf has not
been explicitly enabled or disabled since the system was booted,
the value will be 0."
::= { pfInfo 2 }
pfDebug OBJECT-TYPE
SYNTAX INTEGER {
emerg(0),
alert(1),
crit(2),
err(3),
warning(4),
notice(5),
info(6),
debug(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the debug level that pf is running at."
::= { pfInfo 3 }
pfHostid OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The (unique) host id of the machine running pf."
::= { pfInfo 4 }
-- pfCounters
pfCntMatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have matched a filter rule."
::= { pfCounters 1 }
pfCntBadOffset OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have had a bad offset value."
::= { pfCounters 2 }
pfCntFragment OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packet fragments."
::= { pfCounters 3 }
pfCntShort OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were too short to contain a valid header."
::= { pfCounters 4 }
pfCntNormalize OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were normalized using the packet scrubber."
::= { pfCounters 5 }
pfCntMemory OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to memory limitations."
::= { pfCounters 6 }
pfCntTimestamp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to improper RFC1323 timestamp."
::= { pfCounters 7 }
pfCntCongestion OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to congestion on the interface."
::= { pfCounters 8 }
pfCntIpOption OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to having options set in
the IP header."
::= { pfCounters 9 }
pfCntProtoCksum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to memory limitations."
::= { pfCounters 10 }
pfCntStateMismatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to a state table mismatch."
::= { pfCounters 11 }
pfCntStateInsert OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to errors creating a
state table entry."
::= { pfCounters 12 }
pfCntStateLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to the per-rule max
state limit being reached."
::= { pfCounters 13 }
pfCntSrcLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped due to stateful connection
tracking. A packet could be dropped due to resource limits (memory)
or due to a tracking limit being reached."
::= { pfCounters 14 }
pfCntSynproxy OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped during the TCP synproxy process."
::= { pfCounters 15 }
pfCntTranslate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped because network address
translation was requested and no unused port was available."
::= { pfCounters 16 }
pfCntNoRoute OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were dropped because policy based routing
was requested but no target addresses were available."
::= { pfCounters 17 }
-- pfStateTable
pfStateCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in the state table."
::= { pfStateTable 1 }
pfStateSearches OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of searches against the state table."
::= { pfStateTable 2 }
pfStateInserts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inserts into the state table."
::= { pfStateTable 3 }
pfStateRemovals OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of removals from the state table."
::= { pfStateTable 4 }
-- pfLogInterface
pfLogIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the interface configured using 'set loginterface'.
If no interface has been configured, the object will be empty."
::= { pfLogInterface 1 }
pfLogIfIpBytesIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 bytes passed in on the loginterface."
::= { pfLogInterface 2 }
pfLogIfIpBytesOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 bytes passed out on the loginterface."
::= { pfLogInterface 3 }
pfLogIfIpPktsInPass OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 packets passed in on the loginterface."
::= { pfLogInterface 4 }
pfLogIfIpPktsInDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped IPv4 packets coming in on the loginterface."
::= { pfLogInterface 5 }
pfLogIfIpPktsOutPass OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 packets passed out on the loginterface."
::= { pfLogInterface 6 }
pfLogIfIpPktsOutDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped IPv4 packets going out on the loginterface."
::= { pfLogInterface 7 }
pfLogIfIp6BytesIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 bytes passed in on the loginterface."
::= { pfLogInterface 8 }
pfLogIfIp6BytesOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 bytes passed out on the loginterface."
::= { pfLogInterface 9 }
pfLogIfIp6PktsInPass OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 packets passed in on the loginterface."
::= { pfLogInterface 10 }
pfLogIfIp6PktsInDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped IPv6 packets coming in on the loginterface."
::= { pfLogInterface 11 }
pfLogIfIp6PktsOutPass OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 packets passed out on the loginterface."
::= { pfLogInterface 12 }
pfLogIfIp6PktsOutDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped IPv6 packets going out on the loginterface."
::= { pfLogInterface 13 }
-- pfSrcTracking
pfSrcTrackCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in the source tracking table."
::= { pfSrcTracking 1 }
pfSrcTrackSearches OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of searches against the source tracking table."
::= { pfSrcTracking 2 }
pfSrcTrackInserts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inserts into the source tracking table."
::= { pfSrcTracking 3 }
pfSrcTrackRemovals OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of removals from the source tracking table."
::= { pfSrcTracking 4 }
-- pfLimits
pfLimitStates OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of entries in the memory pool used by state
table entries (filter rules that specify 'keep state')."
::= { pfLimits 1 }
pfLimitSourceNodes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of entries in the memory pool used for tracking
source IP addresses (filter rules that specify 'sticky-address' or
'source-track' options)."
::= { pfLimits 2 }
pfLimitFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of entries in the memory pool used for packet
reassembly (scrub rules)."
::= { pfLimits 3 }
pfLimitMaxTables OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of tables that can be created as part of the
active ruleset."
::= { pfLimits 4 }
pfLimitMaxTableEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall maximum number of addresses that can be stored in
tables."
::= { pfLimits 5 }
-- pfTimeouts
pfTimeoutTcpFirst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after receiving the first TCP packet in a new connection."
::= { pfTimeouts 1 }
pfTimeoutTcpOpening OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State before the destination host ever sends a packet in response
to a new connection from this host."
::= { pfTimeouts 2 }
pfTimeoutTcpEstablished OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State when a TCP connection is fully established."
::= { pfTimeouts 3 }
pfTimeoutTcpClosing OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after the first FIN has been sent."
::= { pfTimeouts 4 }
pfTimeoutTcpFinWait OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after both FINs are sent and the connection is closed."
::= { pfTimeouts 5 }
pfTimeoutTcpClosed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after the first RST has been sent."
::= { pfTimeouts 6 }
pfTimeoutUdpFirst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after receiving the first UDP packet."
::= { pfTimeouts 7 }
pfTimeoutUdpSingle OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State if the source sends more than 1 packet but the destination
has never sent a packet back."
::= { pfTimeouts 8 }
pfTimeoutUdpMultiple OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State when both hosts have sent packets."
::= { pfTimeouts 9 }
pfTimeoutIcmpFirst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after receiving the first ICMP packet."
::= { pfTimeouts 10 }
pfTimeoutIcmpError OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State when an ICMP error comes back in response to an ICMP
packet."
::= { pfTimeouts 11 }
pfTimeoutOtherFirst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State after receiving the first packet."
::= { pfTimeouts 12 }
pfTimeoutOtherSingle OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State if the source sends more than 1 packet but the destination
has never sent a packet back."
::= { pfTimeouts 13 }
pfTimeoutOtherMultiple OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State when both hosts have sent packets."
::= { pfTimeouts 14 }
pfTimeoutFragment OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"How long before an unassembled fragment is expired."
::= { pfTimeouts 15 }
pfTimeoutInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interval before purging expired states and fragments."
::= { pfTimeouts 16 }
pfTimeoutAdaptiveStart OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the number of state entries exceeds this value, adaptive
scaling begins."
::= { pfTimeouts 17 }
pfTimeoutAdaptiveEnd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When reaching this number of state entries, all timeout values
become zero, effectively purging all state entries immediately."
::= { pfTimeouts 18 }
pfTimeoutSrcTrack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time that a source tracking entry will stay around after the
last state expires."
::= { pfTimeouts 19 }
-- pfInterfaces
pfIfNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of network interfaces present on this system."
::= { pfInterfaces 1 }
pfIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF PfIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of individual interfaces. The number of entries is
given by the value of pfIfNumber."
::= { pfInterfaces 128 }
pfIfEntry OBJECT-TYPE
SYNTAX PfIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX { pfIfIndex }
::= { pfIfTable 1 }
PfIfEntry ::=
SEQUENCE {
pfIfIndex Integer32,
pfIfDescr OCTET STRING,
pfIfType INTEGER,
pfIfRefs Unsigned32,
pfIfRules Unsigned32,
pfIfIn4PassPkts Counter64,
pfIfIn4PassBytes Counter64,
pfIfIn4BlockPkts Counter64,
pfIfIn4BlockBytes Counter64,
pfIfOut4PassPkts Counter64,
pfIfOut4PassBytes Counter64,
pfIfOut4BlockPkts Counter64,
pfIfOut4BlockBytes Counter64,
pfIfIn6PassPkts Counter64,
pfIfIn6PassBytes Counter64,
pfIfIn6BlockPkts Counter64,
pfIfIn6BlockBytes Counter64,
pfIfOut6PassPkts Counter64,
pfIfOut6PassBytes Counter64,
pfIfOut6BlockPkts Counter64,
pfIfOut6BlockBytes Counter64
}
pfIfIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each interface. It
is recommended that values are assigned contiguously
starting from 1. The value for each interface sub-layer
must remain constant at least from one re-initialization of
the entity's network management system to the next re-
initialization."
::= { pfIfEntry 1 }
pfIfDescr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the interface."
::= { pfIfEntry 2 }
pfIfType OBJECT-TYPE
SYNTAX INTEGER { group(0), instance(1), detached(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Denotes whether the interface is a group interface, an interface
instance, or whether it's been removed or destroyed."
::= { pfIfEntry 3 }
pfIfRefs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of state and/or source track entries which reference
the interface."
::= { pfIfEntry 4 }
pfIfRules OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of rules which reference the interface."
::= { pfIfEntry 5 }
pfIfIn4PassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 packets passed in."
::= { pfIfEntry 6 }
pfIfIn4PassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 bytes passed in."
::= { pfIfEntry 7 }
pfIfIn4BlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming IPv4 packets blocked."
::= { pfIfEntry 8 }
pfIfIn4BlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming IPv4 bytes blocked."
::= { pfIfEntry 9 }
pfIfOut4PassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 bytes passed out."
::= { pfIfEntry 10 }
pfIfOut4PassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv4 bytes passed out."
::= { pfIfEntry 11 }
pfIfOut4BlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing IPv4 bytes blocked."
::= { pfIfEntry 12 }
pfIfOut4BlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing IPv4 bytes blocked."
::= { pfIfEntry 13 }
pfIfIn6PassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 packets passed in."
::= { pfIfEntry 14 }
pfIfIn6PassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 bytes passed in."
::= { pfIfEntry 15 }
pfIfIn6BlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming IPv6 packets blocked."
::= { pfIfEntry 16 }
pfIfIn6BlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming IPv6 bytes blocked."
::= { pfIfEntry 17 }
pfIfOut6PassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 bytes passed out."
::= { pfIfEntry 18 }
pfIfOut6PassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 bytes passed out."
::= { pfIfEntry 19 }
pfIfOut6BlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing IPv6 bytes blocked."
::= { pfIfEntry 20 }
pfIfOut6BlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing IPv6 bytes blocked."
::= { pfIfEntry 21 }
-- pfTables
pfTblNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of tables present on this system."
::= { pfTables 1 }
pfTblTable OBJECT-TYPE
SYNTAX SEQUENCE OF TblEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of individual tables. The number of entries is
given by the value of tblNumber."
::= { pfTables 128 }
pfTblEntry OBJECT-TYPE
SYNTAX TblEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular table."
INDEX { pfTblIndex }
::= { pfTblTable 1 }
TblEntry ::=
SEQUENCE {
pfTblIndex Integer32,
pfTblName OCTET STRING,
pfTblAddresses Integer32,
pfTblAnchorRefs Integer32,
pfTblRuleRefs Integer32,
pfTblEvalsMatch Counter64,
pfTblEvalsNoMatch Counter64,
pfTblInPassPkts Counter64,
pfTblInPassBytes Counter64,
pfTblInBlockPkts Counter64,
pfTblInBlockBytes Counter64,
pfTblInXPassPkts Counter64,
pfTblInXPassBytes Counter64,
pfTblOutPassPkts Counter64,
pfTblOutPassBytes Counter64,
pfTblOutBlockPkts Counter64,
pfTblOutBlockBytes Counter64,
pfTblOutXPassPkts Counter64,
pfTblOutXPassBytes Counter64,
pfTblStatsCleared TimeTicks,
pfTblInMatchPkts Counter64,
pfTblInMatchBytes Counter64,
pfTblOutMatchPkts Counter64,
pfTblOutMatchBytes Counter64
}
pfTblIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each table."
::= { pfTblEntry 1 }
pfTblName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the table."
::= { pfTblEntry 2 }
pfTblAddresses OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of addresses currently stored in the table."
::= { pfTblEntry 3 }
pfTblAnchorRefs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of anchors which reference the table."
::= { pfTblEntry 4 }
pfTblRuleRefs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of rules which reference the table."
::= { pfTblEntry 5 }
pfTblEvalsMatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of table evaluations that produced a match."
::= { pfTblEntry 6 }
pfTblEvalsNoMatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of table evaluations that didn't match."
::= { pfTblEntry 7 }
pfTblInPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets passed in that matched the table."
::= { pfTblEntry 8 }
pfTblInPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes passed in that matched the table."
::= { pfTblEntry 9 }
pfTblInBlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming packets blocked that matched the table."
::= { pfTblEntry 10 }
pfTblInBlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number incoming bytes blocked that matched the table."
::= { pfTblEntry 11 }
pfTblInXPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets statefully passed in where the state
entry refers to the table, but the table no longer contains
the address in question."
::= { pfTblEntry 12 }
pfTblInXPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes statefully passed in where the state
entry refers to the table, but the table no longer contains
the address in question."
::= { pfTblEntry 13 }
pfTblOutPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets passed out that matched the table."
::= { pfTblEntry 14 }
pfTblOutPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes passed out that matched the table."
::= { pfTblEntry 15 }
pfTblOutBlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing packets blocked that matched the table."
::= { pfTblEntry 16 }
pfTblOutBlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number outgoing bytes blocked that matched the table."
::= { pfTblEntry 17 }
pfTblOutXPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets statefully passed out where the state
entry refers to the table, but the table no longer contains
the address in question."
::= { pfTblEntry 18 }
pfTblOutXPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes statefully passed out where the state
entry refers to the table, but the table no longer contains
the address in question."
::= { pfTblEntry 19 }
pfTblStatsCleared OBJECT-TYPE
SYNTAX TimeTicks
UNITS "1/100th of a Second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds that have passed since the statistics
for this pf table were zeroed."
::= { pfTblEntry 20 }
pfTblInMatchPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets that hit a 'match' rule where this
particular table was referenced by the rule."
::= { pfTblEntry 21 }
pfTblInMatchBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in bytes of all inbound packets that hit a
'match' rule where this particular table was referenced by
the rule."
::= { pfTblEntry 22 }
pfTblOutMatchPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets that hit a 'match' rule where this
particular table was referenced by the rule."
::= { pfTblEntry 23 }
pfTblOutMatchBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in bytes of all outbound packets that hit a
'match' rule where this particular table was referenced by
the rule."
::= { pfTblEntry 24 }
pfTblAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF TblAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the addresses/CIDR network blocks from
every table on the system."
::= { pfTables 129 }
pfTblAddrEntry OBJECT-TYPE
SYNTAX TblAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular table."
INDEX { pfTblAddrTblIndex, pfTblAddrNet, pfTblAddrMask }
::= { pfTblAddrTable 1 }
TblAddrEntry ::=
SEQUENCE {
pfTblAddrTblIndex Integer32,
pfTblAddrNet IpAddress,
pfTblAddrMask Integer32,
pfTblAddrCleared TimeTicks,
pfTblAddrInBlockPkts Counter64,
pfTblAddrInBlockBytes Counter64,
pfTblAddrInPassPkts Counter64,
pfTblAddrInPassBytes Counter64,
pfTblAddrOutBlockPkts Counter64,
pfTblAddrOutBlockBytes Counter64,
pfTblAddrOutPassPkts Counter64,
pfTblAddrOutPassBytes Counter64,
pfTblAddrInMatchPkts Counter64,
pfTblAddrInMatchBytes Counter64,
pfTblAddrOutMatchPkts Counter64,
pfTblAddrOutMatchBytes Counter64
}
pfTblAddrTblIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies the table which
contains this pfTblAddrNet/pfTblAddrMask pair."
::= { pfTblAddrEntry 1 }
pfTblAddrNet OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address portion of the CIDR network for this
particular table entry."
::= { pfTblAddrEntry 2 }
pfTblAddrMask OBJECT-TYPE
SYNTAX Integer32 (0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CIDR bitmask for this particular table entry."
::= { pfTblAddrEntry 3 }
pfTblAddrCleared OBJECT-TYPE
SYNTAX TimeTicks
UNITS "1/100th of a Second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that's passed since the statistics where last cleared, or
since the pfTblAddrNet/pfTblAddrMask pair was loaded into the table,
whichever is sooner."
::= { pfTblAddrEntry 4 }
pfTblAddrInBlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets blocked as a result of matching
this table entry."
::= { pfTblAddrEntry 5 }
pfTblAddrInBlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound bytes blocked as a result of matching
this table entry."
::= { pfTblAddrEntry 6 }
pfTblAddrInPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets passed as a result of matching
this table entry."
::= { pfTblAddrEntry 7 }
pfTblAddrInPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound bytes passed as a result of matching
this table entry."
::= { pfTblAddrEntry 8 }
pfTblAddrOutBlockPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets blocked as a result of matching
this table entry."
::= { pfTblAddrEntry 9 }
pfTblAddrOutBlockBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound bytes blocked as a result of matching
this table entry."
::= { pfTblAddrEntry 10 }
pfTblAddrOutPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets passed as a result of matchin
this table entry."
::= { pfTblAddrEntry 11 }
pfTblAddrOutPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound bytes passed as a result of matchg
this table entry."
::= { pfTblAddrEntry 12 }
pfTblAddrInMatchPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets that hit a 'match' rule where
this table entry was referenced."
::= { pfTblAddrEntry 13 }
pfTblAddrInMatchBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in bytes of all inbound packets that hit
a 'match' rule where this table entry was referenced."
::= { pfTblAddrEntry 14 }
pfTblAddrOutMatchPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets that hit a 'match' rule where
this table entry was referenced."
::= { pfTblAddrEntry 15 }
pfTblAddrOutMatchBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size in bytes of all outbound packets that hit
a 'match' rule where this table entry was referenced."
::= { pfTblAddrEntry 16 }
-- pfLabels
pfLabelNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of labels in the active pf ruleset."
::= { pfLabels 1 }
pfLabelTable OBJECT-TYPE
SYNTAX SEQUENCE OF PfLabelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of individual labels. The number of entries is
given by the value of pfLabelNumber."
::= { pfLabels 128 }
pfLabelEntry OBJECT-TYPE
SYNTAX PfLabelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular label."
INDEX { pfLabelIndex }
::= { pfLabelTable 1 }
PfLabelEntry ::=
SEQUENCE {
pfLabelIndex Integer32,
pfLabelName OCTET STRING,
pfLabelEvals Counter64,
pfLabelPkts Counter64,
pfLabelBytes Counter64,
pfLabelInPkts Counter64,
pfLabelInBytes Counter64,
pfLabelOutPkts Counter64,
pfLabelOutBytes Counter64,
pfLabelTotalStates Counter32
}
pfLabelIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each label."
::= { pfLabelEntry 1 }
pfLabelName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the label."
::= { pfLabelEntry 2 }
pfLabelEvals OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of rule evaluations."
::= { pfLabelEntry 3 }
pfLabelPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets matched by the rule."
::= { pfLabelEntry 4 }
pfLabelBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes matched by the rule."
::= { pfLabelEntry 5 }
pfLabelInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming packets matched by the rule."
::= { pfLabelEntry 6 }
pfLabelInBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incoming bytes matched by the rule."
::= { pfLabelEntry 7 }
pfLabelOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing packets matched by the rule."
::= { pfLabelEntry 8 }
pfLabelOutBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outgoing bytes matched by the rule."
::= { pfLabelEntry 9 }
pfLabelTotalStates OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of state table entries created by this rule
since the ruleset was loaded."
::= { pfLabelEntry 10 }
-- pfsyncStats
pfsyncIpPktsRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of IPv4 pfsync packets received on all interfaces."
::= { pfsyncStats 1 }
pfsyncIp6PktsRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of IPv6 pfsync packets received on all interfaces."
::= { pfsyncStats 2 }
pfsyncPktDiscardsForBadInterface OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded because it was received
on an interface that is not running pfsync."
::= { pfsyncStats 3 }
pfsyncPktDiscardsForBadTtl OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to having a TTL less
than 255."
::= { pfsyncStats 4 }
pfsyncPktShorterThanHeader OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets received that had a length shorter
than the pfsync packet header."
::= { pfsyncStats 5 }
pfsyncPktDiscardsForBadVersion OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to incorrect protocol
version."
::= { pfsyncStats 6 }
pfsyncPktDiscardsForBadAction OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to an invalid pfsync
action in the header."
::= { pfsyncStats 7 }
pfsyncPktDiscardsForBadLength OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to incorrect size."
::= { pfsyncStats 8 }
pfsyncPktDiscardsForBadAuth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to authentication failure."
::= { pfsyncStats 9 }
pfsyncPktDiscardsForStaleState OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded because they tried to update
a stale state entry."
::= { pfsyncStats 10 }
pfsyncPktDiscardsForBadValues OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to containing bad values."
::= { pfsyncStats 11 }
pfsyncPktDiscardsForBadState OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets discarded due to state insert/lookup
failure."
::= { pfsyncStats 12 }
pfsyncIpPktsSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of IPv4 pfsync packets sent on all interfaces."
::= { pfsyncStats 13 }
pfsyncIp6PktsSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of IPv6 pfsync packets sent on all interfaces."
::= { pfsyncStats 14 }
pfsyncNoMemory OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets which could not be sent due to
insufficient memory."
::= { pfsyncStats 15 }
pfsyncOutputErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pfsync packets which could not be sent."
::= { pfsyncStats 16 }
END
|