Deleted Added
full compact
BEGEMOT-PF-MIB.txt (205280) BEGEMOT-PF-MIB.txt (205607)
1--
2-- ----------------------------------------------------------------------------
3-- "THE BEER-WARE LICENSE" (Revision 42):
4-- <philip@FreeBSD.org> wrote this file. As long as you retain this notice you
5-- can do whatever you want with this stuff. If we meet some day, and you think
6-- this stuff is worth it, you can buy me a beer in return. -Philip Paeps
7-- ----------------------------------------------------------------------------
8--
1--
2-- ----------------------------------------------------------------------------
3-- "THE BEER-WARE LICENSE" (Revision 42):
4-- <philip@FreeBSD.org> wrote this file. As long as you retain this notice you
5-- can do whatever you want with this stuff. If we meet some day, and you think
6-- this stuff is worth it, you can buy me a beer in return. -Philip Paeps
7-- ----------------------------------------------------------------------------
8--
9-- $FreeBSD: head/usr.sbin/bsnmpd/modules/snmp_pf/BEGEMOT-PF-MIB.txt 205280 2010-03-18 14:54:31Z syrinx $
9-- $FreeBSD: head/usr.sbin/bsnmpd/modules/snmp_pf/BEGEMOT-PF-MIB.txt 205607 2010-03-24 16:07:33Z syrinx $
10--
11
12BEGEMOT-PF-MIB DEFINITIONS ::= BEGIN
13
14IMPORTS
15 MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32,
16 TimeTicks, Unsigned32
17 FROM SNMPv2-SMI
18 TruthValue
19 FROM SNMPv2-TC
10--
11
12BEGEMOT-PF-MIB DEFINITIONS ::= BEGIN
13
14IMPORTS
15 MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32,
16 TimeTicks, Unsigned32
17 FROM SNMPv2-SMI
18 TruthValue
19 FROM SNMPv2-TC
20 InetAddress, InetAddressType, InetAddressPrefixLength
21 FROM INET-ADDRESS-MIB
20 begemot
21 FROM BEGEMOT-MIB;
22
23begemotPf MODULE-IDENTITY
22 begemot
23 FROM BEGEMOT-MIB;
24
25begemotPf MODULE-IDENTITY
24 LAST-UPDATED "201003170000Z"
26 LAST-UPDATED "201003180000Z"
25 ORGANIZATION "NixSys BVBA"
26 CONTACT-INFO
27 " Philip Paeps
28
29 Postal: NixSys BVBA
30 Louizastraat 14
31 BE-2800 Mechelen
32 Belgium
33
34 E-Mail: philip@FreeBSD.org"
35 DESCRIPTION
36 "The Begemot MIB for the pf packet filter."
27 ORGANIZATION "NixSys BVBA"
28 CONTACT-INFO
29 " Philip Paeps
30
31 Postal: NixSys BVBA
32 Louizastraat 14
33 BE-2800 Mechelen
34 Belgium
35
36 E-Mail: philip@FreeBSD.org"
37 DESCRIPTION
38 "The Begemot MIB for the pf packet filter."
39 REVISION "201003180000Z"
40 DESCRIPTION
41 "Modified pfTablesAddrEntry to support IPv6
42 addresses - added pfTablesAddrNetType column
43 and modified type of pfTablesAddrNet to
44 InetAddress."
37 REVISION "200912050000Z"
38 DESCRIPTION
39 "Added support for retrieving counters of labeled
40 pf filter rules via pfLabelspfLabels subtree."
41 REVISION "200501240000Z"
42 DESCRIPTION
43 "Initial revision."
44

--- 975 unchanged lines hidden (view full) ---

1020 DESCRIPTION
1021 "An entry in the pfTablesAddrTable containing information
1022 about a particular entry in a table."
1023 INDEX { pfTablesAddrIndex }
1024 ::= { pfTablesAddrTable 1 }
1025
1026PfTablesAddrEntry ::= SEQUENCE {
1027 pfTablesAddrIndex Integer32,
45 REVISION "200912050000Z"
46 DESCRIPTION
47 "Added support for retrieving counters of labeled
48 pf filter rules via pfLabelspfLabels subtree."
49 REVISION "200501240000Z"
50 DESCRIPTION
51 "Initial revision."
52

--- 975 unchanged lines hidden (view full) ---

1028 DESCRIPTION
1029 "An entry in the pfTablesAddrTable containing information
1030 about a particular entry in a table."
1031 INDEX { pfTablesAddrIndex }
1032 ::= { pfTablesAddrTable 1 }
1033
1034PfTablesAddrEntry ::= SEQUENCE {
1035 pfTablesAddrIndex Integer32,
1028 pfTablesAddrNet IpAddress,
1029 pfTablesAddrMask Integer32,
1036 pfTablesAddrNetType InetAddressType,
1037 pfTablesAddrNet InetAddress,
1038 pfTablesAddrPrefix InetAddressPrefixLength,
1030 pfTablesAddrTZero TimeTicks,
1031 pfTablesAddrBytesInPass Counter64,
1032 pfTablesAddrBytesInBlock Counter64,
1033 pfTablesAddrBytesOutPass Counter64,
1034 pfTablesAddrBytesOutBlock Counter64,
1035 pfTablesAddrPktsInPass Counter64,
1036 pfTablesAddrPktsInBlock Counter64,
1037 pfTablesAddrPktsOutPass Counter64,
1038 pfTablesAddrPktsOutBlock Counter64
1039}
1040
1041pfTablesAddrIndex OBJECT-TYPE
1042 SYNTAX Integer32 (1..2147483647)
1043 MAX-ACCESS not-accessible
1044 STATUS current
1045 DESCRIPTION
1046 "A unique value, greater than zero, for each address."
1047 ::= { pfTablesAddrEntry 1 }
1048
1039 pfTablesAddrTZero TimeTicks,
1040 pfTablesAddrBytesInPass Counter64,
1041 pfTablesAddrBytesInBlock Counter64,
1042 pfTablesAddrBytesOutPass Counter64,
1043 pfTablesAddrBytesOutBlock Counter64,
1044 pfTablesAddrPktsInPass Counter64,
1045 pfTablesAddrPktsInBlock Counter64,
1046 pfTablesAddrPktsOutPass Counter64,
1047 pfTablesAddrPktsOutBlock Counter64
1048}
1049
1050pfTablesAddrIndex OBJECT-TYPE
1051 SYNTAX Integer32 (1..2147483647)
1052 MAX-ACCESS not-accessible
1053 STATUS current
1054 DESCRIPTION
1055 "A unique value, greater than zero, for each address."
1056 ::= { pfTablesAddrEntry 1 }
1057
1058pfTablesAddrNetType OBJECT-TYPE
1059 SYNTAX InetAddressType
1060 MAX-ACCESS read-only
1061 STATUS current
1062 DESCRIPTION
1063 "The type of address in the corresponding pfTablesAddrNet object."
1064 ::= { pfTablesAddrEntry 2 }
1065
1049pfTablesAddrNet OBJECT-TYPE
1066pfTablesAddrNet OBJECT-TYPE
1050 SYNTAX IpAddress
1067 SYNTAX InetAddress
1051 MAX-ACCESS read-only
1052 STATUS current
1053 DESCRIPTION
1054 "The IP address of this particular table entry."
1068 MAX-ACCESS read-only
1069 STATUS current
1070 DESCRIPTION
1071 "The IP address of this particular table entry."
1055 ::= { pfTablesAddrEntry 2 }
1072 ::= { pfTablesAddrEntry 3 }
1056
1073
1057pfTablesAddrMask OBJECT-TYPE
1058 SYNTAX Integer32 (0..32)
1074pfTablesAddrPrefix OBJECT-TYPE
1075 SYNTAX InetAddressPrefixLength
1059 MAX-ACCESS read-only
1060 STATUS current
1061 DESCRIPTION
1062 "The CIDR netmask of this particular table entry."
1076 MAX-ACCESS read-only
1077 STATUS current
1078 DESCRIPTION
1079 "The CIDR netmask of this particular table entry."
1063 ::= { pfTablesAddrEntry 3 }
1080 ::= { pfTablesAddrEntry 4 }
1064
1065pfTablesAddrTZero OBJECT-TYPE
1066 SYNTAX TimeTicks
1067 UNITS "1/100th of a Second"
1068 MAX-ACCESS read-only
1069 STATUS current
1070 DESCRIPTION
1071 "The time passed since this entry's statistics were last
1072 cleared, or the time passed since this entry was loaded
1073 into the table, whichever is sooner."
1081
1082pfTablesAddrTZero OBJECT-TYPE
1083 SYNTAX TimeTicks
1084 UNITS "1/100th of a Second"
1085 MAX-ACCESS read-only
1086 STATUS current
1087 DESCRIPTION
1088 "The time passed since this entry's statistics were last
1089 cleared, or the time passed since this entry was loaded
1090 into the table, whichever is sooner."
1074 ::= { pfTablesAddrEntry 4 }
1091 ::= { pfTablesAddrEntry 5 }
1075
1076pfTablesAddrBytesInPass OBJECT-TYPE
1077 SYNTAX Counter64
1078 MAX-ACCESS read-only
1079 STATUS current
1080 DESCRIPTION
1081 "The number of inbound bytes passed as a result of this entry."
1092
1093pfTablesAddrBytesInPass OBJECT-TYPE
1094 SYNTAX Counter64
1095 MAX-ACCESS read-only
1096 STATUS current
1097 DESCRIPTION
1098 "The number of inbound bytes passed as a result of this entry."
1082 ::= { pfTablesAddrEntry 5 }
1099 ::= { pfTablesAddrEntry 6 }
1083
1084pfTablesAddrBytesInBlock OBJECT-TYPE
1085 SYNTAX Counter64
1086 MAX-ACCESS read-only
1087 STATUS current
1088 DESCRIPTION
1089 "The number of inbound bytes blocked as a result of this entry."
1100
1101pfTablesAddrBytesInBlock OBJECT-TYPE
1102 SYNTAX Counter64
1103 MAX-ACCESS read-only
1104 STATUS current
1105 DESCRIPTION
1106 "The number of inbound bytes blocked as a result of this entry."
1090 ::= { pfTablesAddrEntry 6 }
1107 ::= { pfTablesAddrEntry 7 }
1091
1092pfTablesAddrBytesOutPass OBJECT-TYPE
1093 SYNTAX Counter64
1094 MAX-ACCESS read-only
1095 STATUS current
1096 DESCRIPTION
1097 "The number of outbound bytes passed as a result of this entry."
1108
1109pfTablesAddrBytesOutPass OBJECT-TYPE
1110 SYNTAX Counter64
1111 MAX-ACCESS read-only
1112 STATUS current
1113 DESCRIPTION
1114 "The number of outbound bytes passed as a result of this entry."
1098 ::= { pfTablesAddrEntry 7 }
1115 ::= { pfTablesAddrEntry 8 }
1099
1100pfTablesAddrBytesOutBlock OBJECT-TYPE
1101 SYNTAX Counter64
1102 MAX-ACCESS read-only
1103 STATUS current
1104 DESCRIPTION
1105 "The number of outbound bytes blocked as a result of this entry."
1116
1117pfTablesAddrBytesOutBlock OBJECT-TYPE
1118 SYNTAX Counter64
1119 MAX-ACCESS read-only
1120 STATUS current
1121 DESCRIPTION
1122 "The number of outbound bytes blocked as a result of this entry."
1106 ::= { pfTablesAddrEntry 8 }
1123 ::= { pfTablesAddrEntry 9 }
1107
1108pfTablesAddrPktsInPass OBJECT-TYPE
1109 SYNTAX Counter64
1110 MAX-ACCESS read-only
1111 STATUS current
1112 DESCRIPTION
1113 "The number of inbound packets passed as a result of this entry."
1124
1125pfTablesAddrPktsInPass OBJECT-TYPE
1126 SYNTAX Counter64
1127 MAX-ACCESS read-only
1128 STATUS current
1129 DESCRIPTION
1130 "The number of inbound packets passed as a result of this entry."
1114 ::= { pfTablesAddrEntry 9 }
1131 ::= { pfTablesAddrEntry 10 }
1115
1116pfTablesAddrPktsInBlock OBJECT-TYPE
1117 SYNTAX Counter64
1118 MAX-ACCESS read-only
1119 STATUS current
1120 DESCRIPTION
1121 "The number of inbound packets blocked as a result of this entry."
1132
1133pfTablesAddrPktsInBlock OBJECT-TYPE
1134 SYNTAX Counter64
1135 MAX-ACCESS read-only
1136 STATUS current
1137 DESCRIPTION
1138 "The number of inbound packets blocked as a result of this entry."
1122 ::= { pfTablesAddrEntry 10 }
1139 ::= { pfTablesAddrEntry 11 }
1123
1124pfTablesAddrPktsOutPass OBJECT-TYPE
1125 SYNTAX Counter64
1126 MAX-ACCESS read-only
1127 STATUS current
1128 DESCRIPTION
1129 "The number of outbound packets passed as a result of this entry."
1140
1141pfTablesAddrPktsOutPass OBJECT-TYPE
1142 SYNTAX Counter64
1143 MAX-ACCESS read-only
1144 STATUS current
1145 DESCRIPTION
1146 "The number of outbound packets passed as a result of this entry."
1130 ::= { pfTablesAddrEntry 11 }
1147 ::= { pfTablesAddrEntry 12 }
1131
1132pfTablesAddrPktsOutBlock OBJECT-TYPE
1133 SYNTAX Counter64
1134 MAX-ACCESS read-only
1135 STATUS current
1136 DESCRIPTION
1137 "The number of outbound packets blocked as a result of this
1138 entry."
1148
1149pfTablesAddrPktsOutBlock OBJECT-TYPE
1150 SYNTAX Counter64
1151 MAX-ACCESS read-only
1152 STATUS current
1153 DESCRIPTION
1154 "The number of outbound packets blocked as a result of this
1155 entry."
1139 ::= { pfTablesAddrEntry 12 }
1156 ::= { pfTablesAddrEntry 13 }
1140
1141-- --------------------------------------------------------------------------
1142
1143--
1144-- Altq information
1145--
1146
1147pfAltqQueueNumber OBJECT-TYPE

--- 183 unchanged lines hidden ---
1157
1158-- --------------------------------------------------------------------------
1159
1160--
1161-- Altq information
1162--
1163
1164pfAltqQueueNumber OBJECT-TYPE

--- 183 unchanged lines hidden ---