forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACD-VSET-MIB.mib
281 lines (241 loc) · 9.61 KB
/
ACD-VSET-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
275
276
277
278
279
280
281
--
-- Accedian Enterprise Specific MIB
--
-- Copyright (c) 2005-2015, Accedian Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
ACD-VSET-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
DisplayString, TEXTUAL-CONVENTION, RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdVSet MODULE-IDENTITY
LAST-UPDATED "201505050100Z"
ORGANIZATION "Accedian Networks, Inc."
CONTACT-INFO
"Accedian Technical Assistance Center
Accedian Networks, Inc.
2351 Alfred-Nobel blvd., Suite N-410
Saint-Laurent, Quebec Canada H4S 2A9
E-mail: [email protected]"
DESCRIPTION
"The VLAN sets database for this Accedian Networks device."
REVISION "201505050100Z" -- 05 MAY 2015
DESCRIPTION
"Update default values for Outer VLAN configuration."
REVISION "201304040100Z" -- 04 APR 2013
DESCRIPTION
"Add Outer VLAN configuration. Move VLAN Type TC to ACCEDIAN-SMI"
REVISION "201302130100Z" -- 13 February 2013
DESCRIPTION
"Update AcdVsetVlanType textual convention to add t-vlan support."
REVISION "201201110100Z" -- 11 JAN 2012
DESCRIPTION
"Initial version of MIB module ACD-VSET-MIB."
::= { acdMibs 13 }
acdVSetNotifications OBJECT IDENTIFIER ::= { acdVSet 0 }
acdVSetMIBObjects OBJECT IDENTIFIER ::= { acdVSet 1 }
acdVSetConformance OBJECT IDENTIFIER ::= { acdVSet 2 }
acdVSetConfig OBJECT IDENTIFIER ::= { acdVSetMIBObjects 1 }
---------------------------------------------------------------------------
-- Textual conventions
---------------------------------------------------------------------------
AcdVsetVlanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of VLAN to be used."
SYNTAX INTEGER {
cvlan(1),
svlan(2),
tvlan(3)
}
AcdVsetOuterVlanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of VLAN to be used."
SYNTAX INTEGER {
none(0),
cvlan(1),
svlan(2),
tvlan(3)
}
---------------------------------------------------------------------------
-- The VLAN set configuration table
-- This table contains all VLAN set entry configurations.
---------------------------------------------------------------------------
acdVSetConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdVSetConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of all VID set."
::= { acdVSetConfig 1 }
acdVSetConfigEntry OBJECT-TYPE
SYNTAX AcdVSetConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all settings to a VLAN set."
INDEX { acdVSetConfigPolicyListID, acdVSetConfigID }
::= { acdVSetConfigTable 1 }
AcdVSetConfigEntry ::= SEQUENCE {
acdVSetConfigPolicyListID Unsigned32,
acdVSetConfigID Unsigned32,
acdVSetConfigRowStatus RowStatus,
acdVSetConfigName DisplayString,
acdVSetConfigVlanType AcdVsetVlanType,
acdVSetConfigVlanIDs0to1023 OCTET STRING,
acdVSetConfigVlanIDs1024to2047 OCTET STRING,
acdVSetConfigVlanIDs2048to3071 OCTET STRING,
acdVSetConfigVlanIDs3072to4095 OCTET STRING,
acdVSetConfigOuterVlanType AcdVsetOuterVlanType,
acdVSetConfigOuterVlanID Unsigned32
}
acdVSetConfigPolicyListID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies for which Policy list of this VLAN set."
::= { acdVSetConfigEntry 1 }
acdVSetConfigID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each VLAN set instance."
::= { acdVSetConfigEntry 2 }
acdVSetConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"All columns must have a valid value before a row can be activated. To
create a new VLAN set you shall provide the a unique name, the type
and policy list id for an empty row with the RowStatus set to Create
and Go. To delete the VLAN set you need to set the RowStatus to
destroy."
::= { acdVSetConfigEntry 3 }
acdVSetConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a string to uniquely identify the VLAN set."
::= { acdVSetConfigEntry 4 }
acdVSetConfigVlanType OBJECT-TYPE
SYNTAX AcdVsetVlanType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"VLAN Ethernet type."
DEFVAL { cvlan }
::= { acdVSetConfigEntry 5 }
acdVSetConfigVlanIDs0to1023 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdVSetConfigEntry 6 }
acdVSetConfigVlanIDs1024to2047 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 1024 through 1031, and so on. Within each octet, the most
significant bit represents the lowest numbered VLAN ID. If that bit
has a value of '1' then that VLAN is included in the set of VLANs;
the VLAN is not included otherwise."
::= { acdVSetConfigEntry 7 }
acdVSetConfigVlanIDs2048to3071 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 2048 through 2055, and so on. Within each octet, the most
significant bit represents the lowest numbered VLAN ID. If that bit
has a value of '1' then that VLAN is included in the set of VLANs;
the VLAN is not included otherwise."
::= { acdVSetConfigEntry 8 }
acdVSetConfigVlanIDs3072to4095 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 3072 through 3079, and so on. Within each octet, the most
significant bit represents the lowest numbered VLAN ID. If that bit
has a value of '1' then that VLAN is included in the set of VLANs;
the VLAN is not included otherwise."
::= { acdVSetConfigEntry 9 }
acdVSetConfigOuterVlanType OBJECT-TYPE
SYNTAX AcdVsetOuterVlanType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"VLAN Ethernet type. A VLAN type of none(0) indicate that
there is no outer VLAN"
DEFVAL { none }
::= { acdVSetConfigEntry 10 }
acdVSetConfigOuterVlanID OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A single VLAN ID for the VSet, a VID of zero indicate that
there is no outer vlan"
DEFVAL { 0 }
::= { acdVSetConfigEntry 11 }
---------------------------------------------------------------------------
-- ACD-SMAP-MIB Module - Conformance Information
---------------------------------------------------------------------------
acdVSetCompliances OBJECT IDENTIFIER ::= { acdVSetConformance 1 }
acdVSetGroups OBJECT IDENTIFIER ::= { acdVSetConformance 2 }
---------------------------------------------------------------------------
-- Units of conformance
---------------------------------------------------------------------------
acdVSetConfigGroup OBJECT-GROUP
OBJECTS {
acdVSetConfigRowStatus,
acdVSetConfigName,
acdVSetConfigVlanType,
acdVSetConfigVlanIDs0to1023,
acdVSetConfigVlanIDs1024to2047,
acdVSetConfigVlanIDs2048to3071,
acdVSetConfigVlanIDs3072to4095,
acdVSetConfigOuterVlanType,
acdVSetConfigOuterVlanID
}
STATUS current
DESCRIPTION
"Objects for the VLAN set configuration Group."
::= { acdVSetGroups 1 }
acdVSetCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for support of the ACD-VSET-MIB module."
MODULE
MANDATORY-GROUPS {
acdVSetConfigGroup
}
OBJECT acdVSetConfigRowStatus
SYNTAX RowStatus { active(1) }
WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) }
DESCRIPTION "Support for createAndWait is not required."
::= { acdVSetCompliances 1 }
END