This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathBAY-STACK-DHCP-SNOOPING-MIB
236 lines (203 loc) · 6.99 KB
/
BAY-STACK-DHCP-SNOOPING-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
BAY-STACK-DHCP-SNOOPING-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Unsigned32
FROM SNMPv2-SMI
TruthValue, MacAddress, RowStatus
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
VlanIndex
FROM Q-BRIDGE-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
bayStackMibs
FROM SYNOPTICS-ROOT-MIB;
bayStackDhcpSnoopingMib MODULE-IDENTITY
LAST-UPDATED "200606230000Z"
ORGANIZATION "Nortel Ltd."
CONTACT-INFO "nortel.com"
DESCRIPTION
"This MIB module is used for DHCP snooping configuration
settings in Nortel's software and products."
REVISION "200606230000Z" -- June 23, 2006
DESCRIPTION
"Ver 1: Initial version."
::= { bayStackMibs 17 }
bsDhcpSnoopingNotifications OBJECT IDENTIFIER ::= { bayStackDhcpSnoopingMib 0 }
bsDhcpSnoopingObjects OBJECT IDENTIFIER ::= { bayStackDhcpSnoopingMib 1 }
--
-- Scalar objects
--
bsDhcpSnoopingScalars OBJECT IDENTIFIER ::= { bsDhcpSnoopingObjects 1 }
bsDhcpSnoopingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to control whether DHCP snooping is enabled
globally. When globally enabled, DHCP snooping is enabled or
disabled for each individual VLAN in the bsDhcpSnoopingVlanTable."
::= { bsDhcpSnoopingScalars 1 }
--
-- VLAN table
--
bsDhcpSnoopingVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF BsDhcpSnoopingVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to control DHCP snooping settings per-VLAN."
::= { bsDhcpSnoopingObjects 2 }
bsDhcpSnoopingVlanEntry OBJECT-TYPE
SYNTAX BsDhcpSnoopingVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects for controlling DHCP snooping settings
for a VLAN."
INDEX { bsDhcpSnoopingVlanId }
::= { bsDhcpSnoopingVlanTable 1 }
BsDhcpSnoopingVlanEntry ::=
SEQUENCE {
bsDhcpSnoopingVlanId VlanIndex,
bsDhcpSnoopingVlanEnabled TruthValue
}
bsDhcpSnoopingVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN ID value of the VLAN."
::= { bsDhcpSnoopingVlanEntry 1 }
bsDhcpSnoopingVlanEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to control whether DHCP snooping is enabled
for this VLAN."
::= { bsDhcpSnoopingVlanEntry 2 }
--
-- Interface table
--
bsDhcpSnoopingIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BsDhcpSnoopingIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to control DHCP snooping settings per-interface."
::= { bsDhcpSnoopingObjects 3 }
bsDhcpSnoopingIfEntry OBJECT-TYPE
SYNTAX BsDhcpSnoopingIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects for controlling DHCP snooping settings
for an interface."
INDEX { bsDhcpSnoopingIfIndex }
::= { bsDhcpSnoopingIfTable 1 }
BsDhcpSnoopingIfEntry ::=
SEQUENCE {
bsDhcpSnoopingIfIndex InterfaceIndex,
bsDhcpSnoopingIfTrusted TruthValue
}
bsDhcpSnoopingIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface."
::= { bsDhcpSnoopingIfEntry 1 }
bsDhcpSnoopingIfTrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to control whether this interface is trusted
for DHCP snooping purposes."
::= { bsDhcpSnoopingIfEntry 2 }
--
-- Binding table
--
bsDhcpSnoopingBindingTable OBJECT-TYPE
SYNTAX SEQUENCE OF BsDhcpSnoopingBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the DHCP bindings that have been learned."
::= { bsDhcpSnoopingObjects 4 }
bsDhcpSnoopingBindingEntry OBJECT-TYPE
SYNTAX BsDhcpSnoopingBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing a learned DHCP binding."
INDEX { bsDhcpSnoopingBindingVlanId, bsDhcpSnoopingBindingMacAddress }
::= { bsDhcpSnoopingBindingTable 1 }
BsDhcpSnoopingBindingEntry ::=
SEQUENCE {
bsDhcpSnoopingBindingVlanId VlanIndex,
bsDhcpSnoopingBindingMacAddress MacAddress,
bsDhcpSnoopingBindingAddressType InetAddressType,
bsDhcpSnoopingBindingAddress InetAddress,
bsDhcpSnoopingBindingInterface InterfaceIndex,
bsDhcpSnoopingBindingLeaseTime Unsigned32,
bsDhcpSnoopingBindingRowStatus RowStatus
}
bsDhcpSnoopingBindingVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN to which the DHCP client belongs."
::= { bsDhcpSnoopingBindingEntry 1 }
bsDhcpSnoopingBindingMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of the DHCP client."
::= { bsDhcpSnoopingBindingEntry 2 }
bsDhcpSnoopingBindingAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of address contained in the corresponding instance of
bsDhcpSnoopingBindingAddress."
::= { bsDhcpSnoopingBindingEntry 3 }
bsDhcpSnoopingBindingAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internet address assigned to this DHCP client."
::= { bsDhcpSnoopingBindingEntry 4 }
bsDhcpSnoopingBindingInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface to which the DHCP client is connected."
::= { bsDhcpSnoopingBindingEntry 5 }
bsDhcpSnoopingBindingLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lease time of this DHCP client's binding."
::= { bsDhcpSnoopingBindingEntry 6 }
bsDhcpSnoopingBindingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used only to delete DHCP bindings from the table of
learned bindings (this does not actually delete the binding, only
this system's knowledge of the binding). Entries in this table cannot
be created using this object, only deleted. On retrieval, its value
will always be active(1). Setting it to destroy(6) will delete the
DHCP binding from the table of learned bindings."
::= { bsDhcpSnoopingBindingEntry 7 }
END