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
320
321
|
--
-- $Id: dasan-dhcp-r-mib.mib,v 1.1.1.1 2006/05/30 01:09:14 dhlee Exp $
-- (c) 2002, DASAN Networks, Inc. All rights reserved.
--
-- Revision history
-- ===========================================================================
-- 2002/09/09 SYK created
-- 2003/03/13 dhlee modify : all entry is read-only
DASAN-DHCP-R-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises,
TimeTicks, Counter32, snmpModules, mib-2
FROM SNMPv2-SMI
DisplayString, TestAndIncr, TimeStamp
FROM SNMPv2-TC
dasanMgmt
FROM DASAN-SMI
dasanRouterMIBObjects FROM DASAN-ROUTER-MIB
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF;
org OBJECT IDENTIFIER ::= { iso 3 }
dod OBJECT IDENTIFIER ::= { org 6 }
internet OBJECT IDENTIFIER ::= { dod 1 }
directory OBJECT IDENTIFIER ::= { internet 1 }
mgmt OBJECT IDENTIFIER ::= { internet 2 }
transmission OBJECT IDENTIFIER ::= { mib-2 10 }
experimental OBJECT IDENTIFIER ::= { internet 3 }
private OBJECT IDENTIFIER ::= { internet 4 }
security OBJECT IDENTIFIER ::= { internet 5 }
snmpV2 OBJECT IDENTIFIER ::= { internet 6 }
dasan OBJECT IDENTIFIER ::= { enterprises 6296 }
--dasanRouterMIB OBJECT IDENTIFIER ::= { dasanMgmt 2 }
--dasanRouterMIBObjects OBJECT IDENTIFIER ::= { dasanRouterMIB 1 }
-- dhcpMIB MODULE-IDENTITY
dsDhcpMIBObjects MODULE-IDENTITY
LAST-UPDATED "0209090000Z"
ORGANIZATION "DASAN Networks, Inc"
CONTACT-INFO
" SeungYong, Kwon
Postal:
Tel: +82 2 3484 6570
E-mail: sykwon@da-san.com"
DESCRIPTION
"The MIB module for DASAN DHCP entities."
::= { dasanRouterMIBObjects 5 }
-- ::= { dasan 9, 2, 1, 5 }
-- dsDhcpMIBObjects OBJECT IDENTIFIER ::= { dsDhcpMIB 1, 1, 5 }
--- This DHCP MIB module consists of the following groups:
---
--- (1) DHCP daemon configuration group
--- (2) currently none.
--- DHCP daemon configuration group
---
--- This group contains the contents of dhcpd.conf file.
--- Only few options are listed here.
SubnetConfIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of this object identifies the subnet"
SYNTAX Integer32
SubnetConfRangeIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of this object identifies the range of the subnet"
SYNTAX Integer32
dsDhcpDaemonConf OBJECT IDENTIFIER ::= { dsDhcpMIBObjects 1 }
dsDefaultLeaseTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only -- read-write -> read-only
STATUS mandatory
DESCRIPTION
"The default ip-address lease time."
::= { dsDhcpDaemonConf 1 }
dsMaxLeaseTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum ip-address lease time."
::= { dsDhcpDaemonConf 2 }
dsSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The default sub-net mask."
::= { dsDhcpDaemonConf 3 }
dsBroadcastAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The default broadcast address."
::= { dsDhcpDaemonConf 4 }
dsDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of domain."
::= { dsDhcpDaemonConf 5 }
dsDomainNameServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DomainNameServerEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains all server ip address"
::= { dsDhcpDaemonConf 6 }
dsDomainNameServerEntry OBJECT-TYPE
SYNTAX DomainNameServerEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains all server ip address"
INDEX { dsDomainNameServerIpIdx }
::= { dsDomainNameServerTable 1 }
DomainNameServerEntry ::= SEQUENCE {
dsDomainNameServerIpIdx INTEGER,
dsDomainNameServerIp IpAddress
}
dsDomainNameServerIpIdx OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of ip address."
::= { dsDomainNameServerEntry 1 }
dsDomainNameServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ip address of domain name server."
::= { dsDomainNameServerEntry 2 }
dsSubnetConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SubnetConfEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The subnet address table"
::= { dsDhcpDaemonConf 7 }
dsSubnetConfEntry OBJECT-TYPE
SYNTAX SubnetConfEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The subnet address table."
INDEX { SubnetConfIndex }
::= { dsSubnetConfTable 1 }
SubnetConfEntry ::= SEQUENCE {
dsSubnetConfName DisplayString,
dsSubnetConfSubnet IpAddress,
dsSubnetConfNetmask IpAddress,
dsSubnetConfBroadcastAddr IpAddress,
dsSubnetConfDefaultLeaseTime INTEGER,
dsSubnetConfMaxLeaseTime INTEGER,
dsSubnetConfTotalCount INTEGER,
dsSubnetConfAllocatedCount INTEGER,
dsSubnetConfRouters IpAddress,
dsSubnetConfRangeBitmap OCTET STRING
}
dsSubnetConfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The subnet of this table entry."
::= { dsSubnetConfEntry 1 }
dsSubnetConfSubnet OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The subnet of this table entry."
::= { dsSubnetConfEntry 2 }
dsSubnetConfNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The netmask of this table entry."
::= { dsSubnetConfEntry 3 }
dsSubnetConfBroadcastAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Broadcast address of this table entry."
::= { dsSubnetConfEntry 4 }
dsSubnetConfDefaultLeaseTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The default ip-address lease time."
::= { dsSubnetConfEntry 5 }
dsSubnetConfMaxLeaseTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum ip-address lease time."
::= { dsSubnetConfEntry 6 }
dsSubnetConfTotalCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of ip-addresses in this group."
::= { dsSubnetConfEntry 7 }
dsSubnetConfAllocatedCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of allocated ip-addresses in this group."
::= { dsSubnetConfEntry 8 }
dsSubnetConfRouters OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The router address of this table entry."
::= { dsSubnetConfEntry 9 }
dsSubnetConfRangeBitmap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The bitmap of free addresses."
::= { dsSubnetConfEntry 10 }
dsSubnetConfRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SubnetConfRangeEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The subnet ip table."
::= { dsDhcpDaemonConf 8 }
dsSubnetConfRangeEntry OBJECT-TYPE
SYNTAX SubnetConfRangeEntry
MAX-ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The subnet ip table."
INDEX { SubnetConfIndex, SubnetConfRangeIndex }
::= { dsSubnetConfRangeTable 1 }
SubnetConfRangeEntry ::= SEQUENCE {
dsSubnetConfRangeStart IpAddress,
dsSubnetConfRangeEnd IpAddress
}
dsSubnetConfRangeStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The start ip address allocatable."
::= { dsSubnetConfRangeEntry 1 }
dsSubnetConfRangeEnd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION
"The end ip address allocatable."
::= { dsSubnetConfRangeEntry 2 }
END
|