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
|
HP-ICF-RIP DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, IpAddress
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TruthValue, RowStatus
FROM SNMPv2-TC
rip2IfConfEntry
FROM RIPv2-MIB
IANAipRouteProtocol
FROM IANA-RTPROTO-MIB
hpSwitch
FROM HP-ICF-OID;
hpicfRip MODULE-IDENTITY
LAST-UPDATED "200305130217Z" -- May 13, 2003
ORGANIZATION "Hewlett-Packard Company
Workgroup Networks Division"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module contains HP proprietary
extensions to the standard RIP MIB."
REVISION "200305130217Z" -- May 13, 2003
DESCRIPTION "Added an object for configuring a default
administrative distance for RIP routes."
REVISION "200111130339Z" -- November 13, 2001
DESCRIPTION "Initial revision."
::= { hpSwitch 13 }
hpicfRipObjects OBJECT IDENTIFIER ::= { hpicfRip 1 }
hpicfRipGeneral OBJECT IDENTIFIER ::= { hpicfRipObjects 1 }
hpicfRipAdminStatus OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the RIP routing protocol."
::= { hpicfRipGeneral 1 }
hpicfRipDefaultMetric OBJECT-TYPE
SYNTAX INTEGER ( 1..15 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Default metric value for routes redistributed to
RIP."
::= { hpicfRipGeneral 2 }
hpicfRipAutoSummary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A flag indicating whether RIP should perform
border filtering on subnet routes when crossing
a network boundary. Interfaces that are configured
for RIPv1 or RIPv1-compatible mode must always
filter subnets at network boundaries. Interfaces
configured for RIPv2 mode will only filter subnets
if this flag is set to 'true'. Setting this to
'true' will result in all subnets within a
class-based network to be summarized using a single
route for the subnet number, which can decrease the
size of the routing tables. However, if any networks
are discontiguous, this flag should be set to 'false'
for proper routing."
::= { hpicfRipGeneral 3 }
hpicfRipDistance OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative distance to associate with
routes learned by RIP. Routes with lower distances
are preferred. By default, RIP routes have
an administrative distance of 120."
::= { hpicfRipGeneral 4 }
hpicfRipIfConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIfConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the rip2IfConfTable."
::= { hpicfRipObjects 2 }
hpicfRipIfConfEntry OBJECT-TYPE
SYNTAX HpicfIfConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for a single RIP interface."
AUGMENTS { rip2IfConfEntry }
::= { hpicfRipIfConfTable 1 }
HpicfIfConfEntry ::=
SEQUENCE {
hpicfRipIfConfDoPoison TruthValue,
hpicfRipIfConfCost Integer32
}
hpicfRipIfConfDoPoison OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Flag indicating if router should perform poison
reverse on this interface."
DEFVAL { true }
::= { hpicfRipIfConfEntry 1 }
hpicfRipIfConfCost OBJECT-TYPE
SYNTAX Integer32 (1..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "RIP metric for this interface."
DEFVAL { 1 }
::= { hpicfRipIfConfEntry 2 }
hpicfRipRedistTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfRipRedistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table for configuring route redistribution
into RIP."
::= { hpicfRipObjects 3 }
hpicfRipRedistEntry OBJECT-TYPE
SYNTAX HpicfRipRedistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table for configuring route
redistribution into RIP from a single source
protocol. Entries in this table are not
created dynamically. There will be a single
entry for each supported source protocol."
INDEX { hpicfRipRedistSrcProto }
::= { hpicfRipRedistTable 1 }
HpicfRipRedistEntry ::=
SEQUENCE {
hpicfRipRedistSrcProto IANAipRouteProtocol,
hpicfRipRedistEnabled TruthValue
}
hpicfRipRedistSrcProto OBJECT-TYPE
SYNTAX IANAipRouteProtocol
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Source protocol to redistribute routes from."
::= { hpicfRipRedistEntry 1 }
hpicfRipRedistEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A flag indicating whether RIP should
redistribute routes from this source protocol."
::= { hpicfRipRedistEntry 2 }
hpicfRipRedistRestrictTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfRipRedistRestrictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of route prefixes for filtering out
routes that RIP should not redistribute. Any
route that is contained by a range in this table
(in other words, has a longer mask than that
specified by hpicfRipRedistRestrictMask and
where the route destination ANDed with the
hpicfRipRedistRestrictMask is equal to
hpicfRipRedistRestrictAddr) will not be
redistributed as an external route by RIP."
::= { hpicfRipObjects 4 }
hpicfRipRedistRestrictEntry OBJECT-TYPE
SYNTAX HpicfRipRedistRestrictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A single entry in the table. Any route,
regardless of source protocol which is
contained within the specified range will not
be redistributed into RIP. Entries in this
table are created dynamically using the
hpicfRipRedistRestrictStatus object."
INDEX { hpicfRipRedistRestrictAddr,
hpicfRipRedistRestrictMask }
::= { hpicfRipRedistRestrictTable 1 }
HpicfRipRedistRestrictEntry ::=
SEQUENCE {
hpicfRipRedistRestrictAddr IpAddress,
hpicfRipRedistRestrictMask IpAddress,
hpicfRipRedistRestrictStatus RowStatus
}
hpicfRipRedistRestrictAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address of the range of route entries
to exclude from redistribution into RIP."
::= { hpicfRipRedistRestrictEntry 1 }
hpicfRipRedistRestrictMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The mask for the range of route entries to
exclude from redistribution into RIP."
::= { hpicfRipRedistRestrictEntry 2 }
hpicfRipRedistRestrictStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this entry."
::= { hpicfRipRedistRestrictEntry 3 }
hpicfRipConformance OBJECT IDENTIFIER ::= { hpicfRip 2 }
hpicfRipGroups OBJECT IDENTIFIER ::= { hpicfRipConformance 1 }
hpicfRipBaseGroup OBJECT-GROUP
OBJECTS { hpicfRipAdminStatus,
hpicfRipDefaultMetric,
hpicfRipAutoSummary }
STATUS current
DESCRIPTION "Basic RIP configuration information that is not
present in the standard RIP MIB."
::= { hpicfRipGroups 1 }
hpicfRipIfGroup OBJECT-GROUP
OBJECTS { hpicfRipIfConfDoPoison,
hpicfRipIfConfCost }
STATUS current
DESCRIPTION "RIP interface configuration information that is
not present in the standard RIP MIB."
::= { hpicfRipGroups 2 }
hpicfRipRedistGroup OBJECT-GROUP
OBJECTS { hpicfRipRedistEnabled,
hpicfRipRedistRestrictStatus }
STATUS current
DESCRIPTION "A collection of objects for controlling the
redistribution of external routes by RIP."
::= { hpicfRipGroups 3 }
hpicfRipDistanceGroup OBJECT-GROUP
OBJECTS { hpicfRipDistance }
STATUS current
DESCRIPTION "A collection of objects for configuring the
administrative distance of routes learned by RIP."
::= { hpicfRipGroups 4 }
hpicfRipCompliances OBJECT IDENTIFIER ::= { hpicfRipConformance 2 }
hpicfRipCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for HP Routing switches
that support RIP."
MODULE
MANDATORY-GROUPS { hpicfRipBaseGroup,
hpicfRipIfGroup }
GROUP hpicfRipRedistGroup
DESCRIPTION "This group is mandatory for systems
that support route redistribution."
::= { hpicfRipCompliances 1 }
END
|