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
|
-- *****************************************************************************
-- Juniper-IP-TUNNEL-MIB
--
-- Juniper Networks Enterprise MIB
-- Extensions for IP Tunnel management
--
-- Copyright (c) 2001, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002, 2003 Juniper Networks, Inc.
-- All Rights Reserved.
-- *****************************************************************************
Juniper-IP-TUNNEL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32
FROM SNMPv2-SMI
InterfaceIndex
FROM IF-MIB
RowStatus, DisplayString, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
JuniNextIfIndex, JuniName
FROM Juniper-TC
juniMibs
FROM Juniper-MIBs;
juniIpTunnelMIB MODULE-IDENTITY
LAST-UPDATED "200309291729Z" -- 29-Sep-03 01:29 PM EDT
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Networks, Inc.
Postal: 10 Technology Park Drive
Westford, MA 01886-3146
USA
Tel: +1 978 589 5800
Email: mib@Juniper.net"
DESCRIPTION
"The IP Tunnel MIB for the Juniper Networks enterprise."
-- Revision History
REVISION "200309291729Z" -- 29-Sep-03 01:29 PM EDT - JUNOSe 5.1
DESCRIPTION
"Product rebranding (JUNOSe)."
REVISION "200209162144Z" -- 16-Sep-02 05:44 PM EDT - JUNOSe 5.0
DESCRIPTION
"Replaced Unisphere names with Juniper names."
REVISION "200201141816Z" -- 14-Jan-02 01:16 PM EST - JUNOSe 4.1
DESCRIPTION
"Added juniIpTunnelSequenceNumbers."
REVISION "200107232057Z" -- 23-Jul-01 04:57 PM EDT - JUNOSe 3.2
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 51 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpTunnelInterfaceObjects OBJECT IDENTIFIER ::= { juniIpTunnelMIB 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Tunnel Interface Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating IP tunnel interfaces
--
juniIpTunnelNextIfIndex OBJECT-TYPE
SYNTAX JuniNextIfIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Coordinate ifIndex value allocation for entries in juniIpTunnelIfTable.
A GET of this object returns the next available ifIndex value to be used
to create an entry in the associated interface table; or zero, if no
valid ifIndex value is available. This object also returns a value of
zero when it is the lexicographic successor of a varbind presented in an
SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
that ifIndex allocation is unintended.
Successive GETs will typically return different values, thus avoiding
collisions among cooperating management clients seeking to create table
entries simultaneously."
::= { juniIpTunnelInterfaceObjects 1 }
--
-- The IP Tunnel Interface Table
--
juniIpTunnelInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpTunnelInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries of IP Tunnel interfaces."
::= { juniIpTunnelInterfaceObjects 2 }
juniIpTunnelInterfaceEntry OBJECT-TYPE
SYNTAX JuniIpTunnelInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry describes the characteristics of a single IP Tunnel
interface.
Creating/deleting entries in this table causes corresponding entries for
be created/deleted in ifTable/ifXTable/juniIfTable."
INDEX { juniIpTunnelIfIndex }
::= { juniIpTunnelInterfaceTable 1 }
JuniIpTunnelInterfaceEntry ::= SEQUENCE {
juniIpTunnelIfIndex InterfaceIndex,
juniIpTunnelName DisplayString,
juniIpTunnelMode INTEGER,
juniIpTunnelVirtualRouter JuniName,
juniIpTunnelChecksum TruthValue,
juniIpTunnelMtu Integer32,
juniIpTunnelSource IpAddress,
juniIpTunnelDestination IpAddress,
juniIpTunnelRowStatus RowStatus,
juniIpTunnelSequenceNumbers TruthValue }
juniIpTunnelIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the IP tunnel interface. When creating entries in this
table, suitable values for this object are determined by reading
juniIpTunnelNextIfIndex."
::= { juniIpTunnelInterfaceEntry 1 }
juniIpTunnelName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administratively assigned name for this IP Tunnel interface."
::= { juniIpTunnelInterfaceEntry 2 }
juniIpTunnelMode OBJECT-TYPE
SYNTAX INTEGER {
ipTunnelModeGre(0),
ipTunnelModeDvmrp(1) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The configured mode for this IP Tunnel interface."
::= { juniIpTunnelInterfaceEntry 3 }
juniIpTunnelVirtualRouter OBJECT-TYPE
SYNTAX JuniName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The transport virtual router associated with this IP tunnel interface.
This object need not be set when creating row entries. Note that the
default when this object is not specified is the router associated with
the agent acting on the management request."
DEFVAL { "default" }
::= { juniIpTunnelInterfaceEntry 4 }
juniIpTunnelChecksum OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Tunnel checksum configuration for this entry. Setting this object
to true(1) will enabled end-to-end checksumming and will cause the
system to drop packets with bad checksums received on this interface.
Setting this object to false(2) will disable this feature.
Note: This configuration object is not supported for DVMRP tunnels."
DEFVAL { false }
::= { juniIpTunnelInterfaceEntry 5 }
juniIpTunnelMtu OBJECT-TYPE
SYNTAX Integer32 (1024..10240)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tunnel MTU."
DEFVAL { 10240 }
::= { juniIpTunnelInterfaceEntry 6 }
juniIpTunnelDestination OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tunnel destination IP address."
DEFVAL { 0 }
::= { juniIpTunnelInterfaceEntry 7 }
juniIpTunnelSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tunnel source IP address."
DEFVAL { 0 }
::= { juniIpTunnelInterfaceEntry 8 }
juniIpTunnelRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
juniIpTunnelIfRowStatus
juniIpTunnelName
juniIpTunnelMode
In addition, when creating an entry the following condition must hold:
A value for juniIpTunnelIfIndex must have been determined
previously, typically by reading juniIpTunnelNextIfIndex.
Once created, the following objects may not be modified:
juniIpTunnelName
juniIpTunnelMode
juniIpTunnelVirtualRouter
A corresponding entry in ifTable/ifXTable/juniIfTable is created/
destroyed as a result of creating/destroying an entry in this table."
::= { juniIpTunnelInterfaceEntry 9 }
juniIpTunnelSequenceNumbers OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tunnel sequence number configuration for this entry. Setting this
object to true(1) will enable sequence number generation. Setting this
object to false(2) will disable this feature.
Note: This configuration object is not supported for DVMRP tunnels."
DEFVAL { false }
::= { juniIpTunnelInterfaceEntry 10 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpTunnelConformance OBJECT IDENTIFIER ::= { juniIpTunnelMIB 2 }
juniIpTunnelCompliances OBJECT IDENTIFIER ::= { juniIpTunnelConformance 1 }
juniIpTunnelGroups OBJECT IDENTIFIER ::= { juniIpTunnelConformance 2 }
--
-- compliance statements
--
juniIpTunnnelCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities that implement the Juniper
IP Tunnel MIB. This compliance statement became obsolete when
juniIpTunnelSequenceNumbers was added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpTunnelInterfaceGroup }
::= { juniIpTunnelCompliances 1 } -- JUNOSe 3.2
juniIpTunnnelCompliance2 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities that implement the Juniper IP
Tunnel MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniIpTunnelInterfaceGroup2 }
::= { juniIpTunnelCompliances 2 } -- JUNOSe 4.1
--
-- units of conformance
--
juniIpTunnelInterfaceGroup OBJECT-GROUP
OBJECTS {
juniIpTunnelNextIfIndex,
juniIpTunnelName,
juniIpTunnelMode,
juniIpTunnelVirtualRouter,
juniIpTunnelChecksum,
juniIpTunnelMtu,
juniIpTunnelSource,
juniIpTunnelDestination,
juniIpTunnelRowStatus }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP Tunnel capabilities in a
Juniper product. This group became obsolete when
juniIpTunnelSequenceNumbers was added."
::= { juniIpTunnelGroups 1 } -- JUNOSe 3.2
juniIpTunnelInterfaceGroup2 OBJECT-GROUP
OBJECTS {
juniIpTunnelNextIfIndex,
juniIpTunnelName,
juniIpTunnelMode,
juniIpTunnelVirtualRouter,
juniIpTunnelChecksum,
juniIpTunnelMtu,
juniIpTunnelSource,
juniIpTunnelDestination,
juniIpTunnelRowStatus,
juniIpTunnelSequenceNumbers }
STATUS current
DESCRIPTION
"A collection of objects for managing IP Tunnel capabilities in a
Juniper product."
::= { juniIpTunnelGroups 2 } -- JUNOSe 4.1
END
|