-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCOSB-IPv6
executable file
·285 lines (240 loc) · 8.49 KB
/
CISCOSB-IPv6
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
CISCOSB-IPv6 DEFINITIONS ::= BEGIN
-- Title: CISCOSB IPv6 Private Extension
-- Version: 7.46.00.00
-- Date: 25 Jan 2007
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Counter32, IpAddress,
mib-2, Unsigned32, Counter64,
zeroDotZero FROM SNMPv2-SMI
TimeInterval, TruthValue FROM SNMPv2-TC
switch001 FROM CISCOSB-MIB
ipSpec FROM CISCOSB-IP
ipAddressEntry, ipv6InterfaceEntry FROM IP-MIB
ipNetToPhysicalEntry FROM IP-MIB
inetCidrRouteEntry FROM IP-FORWARD-MIB
InterfaceIndexOrZero FROM IF-MIB
InetAddressPrefixLength FROM INET-ADDRESS-MIB;
rlIPv6 MODULE-IDENTITY
LAST-UPDATED "200809250000Z"
ORGANIZATION "Cisco Small Business"
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Home http://www.cisco.com/smb>;,
Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for IPv6 MIB."
REVISION "200809250000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 129 }
--- IpAddressTable augmentation
rlIpAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipAddressTable, and is used to
add/delete IPv6 entries to/from that table. It contains
private objects."
::= { ipSpec 19 }
rlIpAddressEntry OBJECT-TYPE
SYNTAX RlIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An address mapping for a particular interface."
AUGMENTS { ipAddressEntry }
::= { rlIpAddressTable 1 }
RlIpAddressEntry ::= SEQUENCE {
rlIpAddressPrefixLength InetAddressPrefixLength,
rlIpAddressType INTEGER
}
rlIpAddressPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The prefix length of this address."
DEFVAL { 64 }
::= { rlIpAddressEntry 1 }
rlIpAddressType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
anycast(2),
broadcast(3),
multicast(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Extend standard field ipAddressType to multicast"
DEFVAL { unicast }
::= { rlIpAddressEntry 2 }
--- ipv6InterfaceTable augmentation
rlipv6InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rlipv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipv6InterfaceTable, and is used to
configure additional interface parameters."
::= { ipSpec 20 }
rlipv6InterfaceEntry OBJECT-TYPE
SYNTAX Rlipv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional configuration parameters for a particular interface."
AUGMENTS { ipv6InterfaceEntry }
::= { rlipv6InterfaceTable 1 }
Rlipv6InterfaceEntry ::= SEQUENCE {
rlipv6InterfaceNdDadAttemps INTEGER,
rlipv6InterfaceAutoconfigEnable INTEGER,
rlipv6InterfaceIcmpUnreachSendEnable INTEGER,
rlipv6InterfaceLinkMTU Unsigned32,
rlipv6InterfaceMLDVersion Unsigned32
}
rlipv6InterfaceNdDadAttemps OBJECT-TYPE
SYNTAX INTEGER (0..600)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ND Duplicated address detection number of attempts."
DEFVAL { 0 }
::= { rlipv6InterfaceEntry 1 }
rlipv6InterfaceAutoconfigEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disables Stateless Address Auto configuration
on specific interface."
DEFVAL { enable }
::= { rlipv6InterfaceEntry 2 }
rlipv6InterfaceIcmpUnreachSendEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disables sending of ICMP Destination Unreachable
Error on specific interface."
DEFVAL { enable }
::= { rlipv6InterfaceEntry 3 }
rlipv6InterfaceLinkMTU OBJECT-TYPE
SYNTAX Unsigned32 (1280..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum transmission unit (MTU) size of IPv6 packets
sent on an interface in bytes."
DEFVAL { 1500 }
::= { rlipv6InterfaceEntry 4 }
rlipv6InterfaceMLDVersion OBJECT-TYPE
SYNTAX Unsigned32 (1..2)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set version of MLD protocol on specific interface."
DEFVAL { 2 }
::= { rlipv6InterfaceEntry 5 }
--- inetCidrRoutetable augmentation
rlinetCidrRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlinetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to inetCidrRouteTable, and is used to
configure or display additional route parameters."
::= { ipSpec 21 }
rlinetCidrRouteEntry OBJECT-TYPE
SYNTAX RlinetCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional parameters for a particular route."
AUGMENTS { inetCidrRouteEntry }
::= { rlinetCidrRouteTable 1 }
RlinetCidrRouteEntry ::= SEQUENCE {
rlinetCidrRouteLifetime Unsigned32
}
rlinetCidrRouteLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining length of time, in seconds, that this route
will continue to be valid, i.e., time until deprecation.
A value of 4,294,967,295 represents infinity."
DEFVAL { 4294967295 }
::= { rlinetCidrRouteEntry 1 }
--- ipNetToPhysicalTable augmentation
rlipNetToPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlipNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is parallel to ipNetToPhysicalTable, and is used to
configure or display additional neighbor parameters."
::= { ipSpec 22 }
rlipNetToPhysicalEntry OBJECT-TYPE
SYNTAX RlipNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional parameters for a neighbor"
AUGMENTS { ipNetToPhysicalEntry }
::= { rlipNetToPhysicalTable 1 }
RlipNetToPhysicalEntry ::= SEQUENCE {
rlipNetToPhysicalIsRouter TruthValue
}
rlipNetToPhysicalIsRouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has the value 'true(1)', if the neighbor
is router; otherwise, the value is 'false(2)'."
::= { rlipNetToPhysicalEntry 1 }
--- ICMPv6 Rate Limiting
rlipv6IcmpErrorRatelimitInterval OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time interval between tokens being placed in the bucket,
each token represents a single ICMP error message.
The interval measured in milliseconds."
DEFVAL { 100 }
::= { rlIPv6 1 }
rlipv6IcmpErrorRatelimitBucketSize OBJECT-TYPE
SYNTAX INTEGER(1..200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of tokens stored in the bucket,
each token represents a single ICMP error message."
DEFVAL { 10 }
::= { rlIPv6 2 }
--- IPv6 Link Local Default Zone
rlipv6LLDefaultZone OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interface which would be used as the egress interface
for packets sent without a specified IPv6Z interface identifier
or with the default '0' identifier. Zero value means no default
interface specified."
DEFVAL { 0 }
::= { rlIPv6 3 }
END