-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCENTILLION-VLAN-MIB
200 lines (167 loc) · 5.81 KB
/
CENTILLION-VLAN-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
-- SECTION 1: Top Level Definitions
CENTILLION-VLAN-MIB DEFINITIONS ::= BEGIN
-- Centillion VLAN MIB Release 0.0.0
-- Revision 2/24/98
-- Copyright 1998 Bay Networks, Inc.
-- All rights reserved.
-- This Bay Networks SNMP Management Information Base Specification
-- (Specification) embodies Bay Networks' confidential and
-- proprietary intellectual property. Bay Networks retains all
-- title and ownership in the Specification, including any
-- revisions.
-- This Specification is supplied "AS IS," and Bay Networks makes
-- no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.
-- Imports
IMPORTS
OBJECT-TYPE
FROM RFC-1212
RowStatus, TruthValue
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
vlan, VlanId
FROM CENTILLION-MCAST-MIB;
-- Groups
cnVlanMemberGroup OBJECT IDENTIFIER ::= { vlan 2 }
-- SECTION 2: VLAN Port Membership Configuration Table
--
-- This table defines the VLAN membership and configuration for each port.
-- It is used as a substitute for the cnVlanPortTable to provide
-- configuration support for agents that handle token ring ports
-- in source routing VLANs and/or define a port's ingress
-- classification method by VLAN.
--
cnVlanPortMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnVlanPortMemberEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The VLAN port membership configuration table. This
table contains membership information pertaining to the
ports belonging to a VLAN."
::= { cnVlanMemberGroup 1 }
cnVlanPortMemberEntry OBJECT-TYPE
SYNTAX CnVlanPortMemberEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing VLAN membership information
for a particular port. Entries are added by
specifying the cnVlanPortMemberCard,
cnVlanPortMemberPort, cnVlanPortMemberVID,
and the cnVlanPortMemberIngressType.
Entries are deleted simply by setting the
cnVlanPortMemberStatus object to destroy."
INDEX { cnVlanPortMemberCard,
cnVlanPortMemberPort,
cnVlanPortMemberVID }
::= { cnVlanPortMemberTable 1 }
CnVlanPortMemberEntry ::= SEQUENCE {
cnVlanPortMemberCard
INTEGER,
cnVlanPortMemberPort
INTEGER,
cnVlanPortMemberVID
VlanId,
cnVlanPortMemberStatus
RowStatus,
cnVlanPortMemberIngressType
INTEGER,
cnVlanPortMemberDynamic
TruthValue,
cnVlanPortMemberIfIndex
InterfaceIndex,
cnVlanPortMemberRing
INTEGER
}
cnVlanPortMemberCard OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The card number for this port in the VLAN."
::= { cnVlanPortMemberEntry 1 }
cnVlanPortMemberPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port number for this port in the VLAN."
::= { cnVlanPortMemberEntry 2 }
cnVlanPortMemberVID OBJECT-TYPE
SYNTAX VlanId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The VLAN ID of which this port is a member."
::= { cnVlanPortMemberEntry 3 }
cnVlanPortMemberStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current status of the entry. Entries may be added by
specifying a value of createAndGo, and removed by setting
the status to destroy."
::= { cnVlanPortMemberEntry 4 }
cnVlanPortMemberIngressType OBJECT-TYPE
SYNTAX INTEGER {
pvid(1), -- classify by configured PVID
tag(2), -- classify by 802.1Q tag (VID)
protocolId(3) -- classify by ingress protocol type
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The method used to classify ingress frames on this
port into this VLAN. The allowed values are specific to
the cnVlanType of the VLAN as follows:
byPort: pvid or tag
byProtocolId: pvid, tag, or protocolId
Allowable values may also be restricted by the
VLAN capabilities of this port."
::= { cnVlanPortMemberEntry 5 }
cnVlanPortMemberDynamic OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value for this object indicates whether the
switch learned this port's VLAN membership dynamically."
::= { cnVlanPortMemberEntry 6 }
cnVlanPortMemberIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value for this object identifies the instance of
the ifIndex object, defined in MIB-II, for the interface
corresponding to this port and VLAN. If no such entry
exists, the value 0 may be returned."
::= { cnVlanPortMemberEntry 7 }
cnVlanPortMemberRing OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ring number for this port if this VLAN uses source
route or source route transparent bridging."
::= { cnVlanPortMemberEntry 8 }
-- SECTION 3: Default Management Vlan Configuration
--
cnVlanENETMgt OBJECT-TYPE
SYNTAX VlanId
ACCESS read-write
STATUS mandatory
DESCRIPTION "VID of the Ethernet management VLAN. The null
VID indicates that an Ethernet management VLAN
is not configured."
::= { vlan 3 }
cnVlanTRMgt OBJECT-TYPE
SYNTAX VlanId
ACCESS read-write
STATUS mandatory
DESCRIPTION "VID of the Token Ring management VLAN. The null
VID indicates that an Token Ring management VLAN
is not configured."
::= { vlan 4 }
END