-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathJuniper-CBF-MIB.mib
274 lines (234 loc) · 9.19 KB
/
Juniper-CBF-MIB.mib
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
-- *****************************************************************************
-- Juniper-CBF-MIB
--
-- Juniper Networks Enterprise MIB
-- Extensions for Connection-Based Forwarding Protocol Management
--
-- Copyright 2001 Juniper Networks, Inc. All Rights Reserved.
-- *****************************************************************************
Juniper-CBF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
juniMibs
FROM Juniper-MIBs
InterfaceIndex, InterfaceIndexOrZero
FROM IF-MIB
JuniNextIfIndex
FROM Juniper-TC;
juniCbfMIB MODULE-IDENTITY
LAST-UPDATED "200209162144Z" -- 16-Sep-02 05:44 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
E-mail: [email protected]"
DESCRIPTION
"The Connection-Based Forwarding (CBF) Protocol MIB for the Juniper
Networks Inc. enterprise."
-- Revision History
REVISION "200209162144Z" -- 16-Sep-02 05:44 PM EDT - JUNOSe 5.0
DESCRIPTION
"Replaced Unisphere names with Juniper names."
REVISION "200103301627Z" -- 30-Mar-01 11:27 AM EST - JUNOSe 3.2
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 52 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniCbfObjects OBJECT IDENTIFIER ::= { juniCbfMIB 1 }
juniCbfInterface OBJECT IDENTIFIER ::= { juniCbfObjects 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- CBF Interface attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating new CBF interfaces
--
juniCbfNextIfIndex OBJECT-TYPE
SYNTAX JuniNextIfIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Coordinate ifIndex value allocation for entries in juniCbfIfTable.
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. "
::= { juniCbfInterface 1 }
--
-- The CBF Interface Table
--
juniCbfIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniCbfIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for CBF interfaces present in the system."
::= { juniCbfInterface 2 }
juniCbfIfEntry OBJECT-TYPE
SYNTAX JuniCbfIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry describes the characteristics of an CBF interface.
Creating/deleting entries in this table causes corresponding entries for
be created /deleted in ifTable/ifXTable/juniIfTable."
INDEX { juniCbfIfIndex }
::= { juniCbfIfTable 1 }
JuniCbfIfEntry ::= SEQUENCE {
juniCbfIfIndex InterfaceIndex,
juniCbfIfRowStatus RowStatus,
juniCbfIfLowerIfIndex InterfaceIndexOrZero }
juniCbfIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the CBF interface. When creating entries in this table,
suitable values for this object are determined by reading
juniCbfNextIfIndex."
::= { juniCbfIfEntry 1 }
juniCbfIfRowStatus 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:
juniCbfIfRowStatus
juniCbfIfLowerIfIndex
In addition, when creating an entry the following conditions must hold:
A value for juniCbfIfIndex must have been determined previously,
typically by reading juniCbfNextIfIndex.
The interface identified by a nonzero juniCbfIfLowerIfIndex must
exist.
Once created, the following objects may not be modified:
juniCbfIfLowerIfIndex
A corresponding entry in ifTable/ifXTable/juniIfTable is created/
destroyed as a result of creating/destroying an entry in this table."
::= { juniCbfIfEntry 2 }
juniCbfIfLowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ifIndex of a media interface over which this CBF interface is to be
layered."
::= { juniCbfIfEntry 3 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- CBF connection attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniCbfIfConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniCbfIfConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for CBF interface connection present in the
system."
::= { juniCbfInterface 4 }
juniCbfIfConnEntry OBJECT-TYPE
SYNTAX JuniCbfIfConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry defines a CBF connection."
INDEX { juniCbfIfIngressIfIndex }
::= { juniCbfIfConnTable 1 }
JuniCbfIfConnEntry ::= SEQUENCE {
juniCbfIfIngressIfIndex InterfaceIndex,
juniCbfIfConnRowStatus RowStatus,
juniCbfIfEgressIfIndex InterfaceIndex }
juniCbfIfIngressIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the ingress interface for the CBF connection. When
creating entries in this table, suitable values for this object are
walking the juniCbfIfTable and picking the appropriate juniCbfIfIndex."
::= { juniCbfIfConnEntry 1 }
juniCbfIfConnRowStatus 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:
juniCbfIfRowStatus
juniCbfIfIngressIfIndex
Once created, the following objects may not be modified:
juniCbfIfIngressIfIndex "
::= { juniCbfIfConnEntry 2 }
juniCbfIfEgressIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ifIndex of the egress interface for the CBF interface. When
creating entries in this table, suitable values for this object are
walking the juniCbfIfTable and picking the appropriate juniCbfIfIndex."
::= { juniCbfIfConnEntry 3 }
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB. Placeholders follow.
-- juniCbfTrapControl OBJECT IDENTIFIER ::= { juniCbfMIB 2 }
-- juniCbfTraps OBJECT IDENTIFIER ::= { juniCbfMIB 3 }
-- juniCbfTrapPrefix OBJECT IDENTIFIER ::= { juniCbfTraps 0 }
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniCbfConformance OBJECT IDENTIFIER ::= { juniCbfMIB 4 }
juniCbfCompliances OBJECT IDENTIFIER ::= { juniCbfConformance 1 }
juniCbfGroups OBJECT IDENTIFIER ::= { juniCbfConformance 2 }
--
-- compliance statements
--
juniCbfCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the Juniper CBF
MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniCbfGroup }
::= { juniCbfCompliances 1 }
--
-- units of conformance
--
juniCbfGroup OBJECT-GROUP
OBJECTS {
juniCbfNextIfIndex,
juniCbfIfRowStatus,
juniCbfIfLowerIfIndex,
juniCbfIfConnRowStatus,
juniCbfIfEgressIfIndex }
STATUS current
DESCRIPTION
"A collection of objects providing management of CBF interfaces in a
Juniper product."
::= { juniCbfGroups 1 }
END