forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-DHCPS-MIB
executable file
·1594 lines (1440 loc) · 56.7 KB
/
A3COM-HUAWEI-DHCPS-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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- =========================================================================
-- Copyright (C) 2005 by HUAWEI-3COM TECHNOLOGIES. All rights reserved.
--
-- Description: DHCP Server MIB
-- Reference: Enterprise MIB
-- Version:V1.52
-- History:
-- initial version 2003-03-06
-- V1.0 6th Mar 2004
-- V1.1 Modified by chenhua 2004-08-13
-- Add 0 to the vlaue list of hwDHCPSIPResetFlag for get-opporation
-- V1.2 Modified by chenhua 2004-09-16
-- Modify the default value of hwDHCPSWriteDataDelay to 300
-- V1.3 2004-10-12 updated by gaolong
-- Import TEXTUAL-CONVENTION
-- v1.4 Modified by xinhaing 2004-03-03
-- Add a new table : hwDHCPSIPInUseExTable
-- The satus of the table hwDHCPSIPInUseTable is modified to be deprecated
-- Correct some spelling errors in hwDHCPSIPInUseTable's description
-- Adjust file format
-- v1.5 2006-02-22 Modified by xuyufei
-- Modify the default value of hwDHCPSDetectingServerStatus to disabled
-- Modify the default value of hwDHCPSGlobalPoolClientNetbiosType
-- and hwDHCPSInterfacePoolClientNetbiosType to 0
-- Correct the description of hwDHCPSGlobalPoolOptionHexString,
-- hwDHCPSInterfacePoolOptionHexString, hwDHCPSGlobalPoolNumber,
-- hwDHCPSInterfacePoolNumber
-- v1.51 2006-04-13
-- change value range of hwDHCPSIPInUsePoolName and hwDHCPSIPInUsePoolNameEx
-- v1.52 2011-01-19 Modified by ganchanghua
-- change SYNTAX of hwDHCPSConflictIPDetectTime to OCTET STRING(SIZE(1..20))
-- =========================================================================
A3COM-HUAWEI-DHCPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
huaweiMgmt, hwDhcp
FROM A3COM-HUAWEI-OID-MIB
ifIndex
FROM RFC1213-MIB
OBJECT-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
RowStatus, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
hwDHCPServerMib MODULE-IDENTITY
LAST-UPDATED "200602200000Z" -- February 20, 2006 at 00:00 GMT
ORGANIZATION
"Huawei 3Com Technologies Co., Ltd"
CONTACT-INFO
"Platform Team Huawei 3Com Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.huawei-3com.com
Zip:100085"
DESCRIPTION
"This MIB describes objects used for managing DHCP server."
::= { hwDhcp 2 }
--
-- Textual Conventions
--
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"To descript the status of some function is Enabled or
Disabled."
SYNTAX INTEGER
{
enabled(1),
disabled(0)
}
--
-- Node definitions
--
hwDHCPServerMibObject OBJECT IDENTIFIER ::= { hwDHCPServerMib 1 }
-- Part 1: For DHCP server global pool
--
-- =================================================================
-- 1st Table of hwDHCPServerMibObject: hwDHCPSGlobalPoolTable
-- =================================================================
hwDHCPSGlobalPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSGlobalPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for creating DHCP server global pools."
::= { hwDHCPServerMibObject 1 }
hwDHCPSGlobalPoolEntry OBJECT-TYPE
SYNTAX HwDHCPSGlobalPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects for creating or
deleting a global pool for the DHCP server."
INDEX { hwDHCPSGlobalPoolName }
::= { hwDHCPSGlobalPoolTable 1 }
HwDHCPSGlobalPoolEntry ::=
SEQUENCE
{
hwDHCPSGlobalPoolName OCTET STRING,
hwDHCPSGlobalPoolRowStatus RowStatus
}
hwDHCPSGlobalPoolName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DHCP server global pool name."
::= { hwDHCPSGlobalPoolEntry 1 }
hwDHCPSGlobalPoolRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy."
::= { hwDHCPSGlobalPoolEntry 2 }
-- =================================================================
-- 2nd Table of hwDHCPServerMibObject: hwDHCPSGlobalPoolConfigTable
-- =================================================================
hwDHCPSGlobalPoolConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSGlobalPoolConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the configurations of dhcp
server global pools."
::= { hwDHCPServerMibObject 2 }
hwDHCPSGlobalPoolConfigEntry OBJECT-TYPE
SYNTAX HwDHCPSGlobalPoolConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the objects for configuring
the network ip or host ip etc. to global pools for
DHCP server."
INDEX { hwDHCPSGlobalPoolName }
::= { hwDHCPSGlobalPoolConfigTable 1 }
HwDHCPSGlobalPoolConfigEntry ::=
SEQUENCE
{
hwDHCPSGlobalPoolType INTEGER,
hwDHCPSGlobalPoolNetwork IpAddress,
hwDHCPSGlobalPoolNetworkMask IpAddress,
hwDHCPSGlobalPoolHostIPAddr IpAddress,
hwDHCPSGlobalPoolHostMask IpAddress,
hwDHCPSGlobalPoolHostHAddr MacAddress,
hwDHCPSGlobalPoolConfigUndoFlag INTEGER
}
hwDHCPSGlobalPoolType OBJECT-TYPE
SYNTAX INTEGER
{
null(0),
host(1),
network(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of a DHCP global pool. Any operations of
this object will be bound with the operations
of hwDHCPSGlobalPoolNetwork, hwDHCPSGlobalPoolHostIPAddr,
or hwDHCPSGlobalPoolHostHAddr.
That means any operation of this object alone will
be regarded as invalid operation."
::= { hwDHCPSGlobalPoolConfigEntry 1 }
hwDHCPSGlobalPoolNetwork OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Network ip of a DHCP global pool.
To delete a configured network ip, please set
hwDHCPSGlobalPoolConfigUndoFlag to 1."
::= { hwDHCPSGlobalPoolConfigEntry 2 }
hwDHCPSGlobalPoolNetworkMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Net mask of a DHCP global pool(network).
The SET operation to this object ought to be with
the SET of hwDHCPSGlobalPoolNetwork together, and
any SET operation alone to this object will be
regarded as an invalid operation.
When a network ip of a DHCP global pool was
deleted, the net mask would also be deleted
automatically, and no further operation needed."
::= { hwDHCPSGlobalPoolConfigEntry 3 }
hwDHCPSGlobalPoolHostIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Host ip of a DHCP global pool.
To delete a configured network ip, please set
hwDHCPSGlobalPoolConfigUndoFlag to 2."
::= { hwDHCPSGlobalPoolConfigEntry 4 }
hwDHCPSGlobalPoolHostMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Net mask of a DHCP global pool(host)
The SET operation to this object ought to be with
the SET of hwDHCPSGlobalPoolHostIPAddr together,
and any SET operation alone to this object will be
regarded as an invalid operation.
When a host ip of a DHCP global pool was
deleted, the net mask would also be deleted
automatically, and no further operation needed."
::= { hwDHCPSGlobalPoolConfigEntry 5 }
hwDHCPSGlobalPoolHostHAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Hardware address of a DHCP global pool(host).
To delete a configured hardware address, please
set hwDHCPSGlobalPoolConfigUndoFlag to 3."
::= { hwDHCPSGlobalPoolConfigEntry 6 }
hwDHCPSGlobalPoolConfigUndoFlag OBJECT-TYPE
SYNTAX INTEGER
{
undonetworkip(1),
undohostip(2),
undohosthaddr(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flag of undo operation for hwDHCPSGlobalPoolConfigTable."
::= { hwDHCPSGlobalPoolConfigEntry 7 }
-- =================================================================
-- 3rd Table of hwDHCPServerMibObject: hwDHCPSGlobalPoolParaTable
-- =================================================================
hwDHCPSGlobalPoolParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSGlobalPoolParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring parameters to DHCP global
pools."
::= { hwDHCPServerMibObject 3 }
hwDHCPSGlobalPoolParaEntry OBJECT-TYPE
SYNTAX HwDHCPSGlobalPoolParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the objects for the
configurations of parameters of DHCP global pools."
INDEX { hwDHCPSGlobalPoolName }
::= { hwDHCPSGlobalPoolParaTable 1 }
HwDHCPSGlobalPoolParaEntry ::=
SEQUENCE
{
hwDHCPSGlobalPoolLeaseDay INTEGER,
hwDHCPSGlobalPoolLeaseHour INTEGER,
hwDHCPSGlobalPoolLeaseMinute INTEGER,
hwDHCPSGlobalPoolLeaseUnlimited INTEGER,
hwDHCPSGlobalPoolDomainName OCTET STRING,
hwDHCPSGlobalPoolClientGatewayIPString OCTET STRING,
hwDHCPSGlobalPoolClientGatewayIPUndo IpAddress,
hwDHCPSGlobalPoolClientDNSIPString OCTET STRING,
hwDHCPSGlobalPoolClientDNSIPUndo IpAddress,
hwDHCPSGlobalPoolClientNetbiosType INTEGER,
hwDHCPSGlobalPoolClientNbnsIPString OCTET STRING,
hwDHCPSGlobalPoolClientNbnsIPUndo IpAddress,
hwDHCPSGlobalPoolParaUndoFlag INTEGER,
hwDHCPSGlobalPoolIPInUseReset INTEGER
}
hwDHCPSGlobalPoolLeaseDay OBJECT-TYPE
SYNTAX INTEGER(0..365)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of days of the lease."
DEFVAL { 1 }
::= { hwDHCPSGlobalPoolParaEntry 1 }
hwDHCPSGlobalPoolLeaseHour OBJECT-TYPE
SYNTAX INTEGER(0..23)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of hours of the lease."
DEFVAL { 0 }
::= { hwDHCPSGlobalPoolParaEntry 2 }
hwDHCPSGlobalPoolLeaseMinute OBJECT-TYPE
SYNTAX INTEGER(0..59)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of minutes of the lease."
DEFVAL { 0 }
::= { hwDHCPSGlobalPoolParaEntry 3 }
hwDHCPSGlobalPoolLeaseUnlimited OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
unlimited(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A flag denoting if the lease of a pool is
unlimited."
::= { hwDHCPSGlobalPoolParaEntry 4 }
hwDHCPSGlobalPoolDomainName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Domain name for DHCP clients."
::= { hwDHCPSGlobalPoolParaEntry 5 }
hwDHCPSGlobalPoolClientGatewayIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"String of gateway ip addresses for DHCP clients.
Since mostly 8 ip can be configured for a pool
totally, a string is defined to get or configure 8 ip
ip at a time."
::= { hwDHCPSGlobalPoolParaEntry 6 }
hwDHCPSGlobalPoolClientGatewayIPUndo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A gateway ip address to delete. This object is
only for deleting a given ip of gateway router."
::= { hwDHCPSGlobalPoolParaEntry 7 }
hwDHCPSGlobalPoolClientDNSIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"String of DNS server ip addresses for DHCP clients.
Since mostly 8 ip can be configured for a pool
totally, a string is defined to get or configure 8
ip at a time."
::= { hwDHCPSGlobalPoolParaEntry 8 }
hwDHCPSGlobalPoolClientDNSIPUndo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A DNS server ip address to delete. This object
is only for deleting a given ip of DNS server."
::= { hwDHCPSGlobalPoolParaEntry 9 }
hwDHCPSGlobalPoolClientNetbiosType OBJECT-TYPE
SYNTAX INTEGER
{
null(0),
bnode(1),
pnode(2),
mnode(4),
hnode(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NetBios node type for DHCP clients."
DEFVAL { 0 }
::= { hwDHCPSGlobalPoolParaEntry 10 }
hwDHCPSGlobalPoolClientNbnsIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"String of NetBios server ip addresses for DHCP
clients. Since mostly 8 ip can be configured for
a pool totally, so a string is defined to get or
configure 8 ip at a time."
::= { hwDHCPSGlobalPoolParaEntry 11 }
hwDHCPSGlobalPoolClientNbnsIPUndo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A NetBios server ip address to delete. This
object is only for deleting a given ip of NetBios
server."
::= { hwDHCPSGlobalPoolParaEntry 12 }
hwDHCPSGlobalPoolParaUndoFlag OBJECT-TYPE
SYNTAX INTEGER
{
undoDomain(1),
undoLease(2),
undoGateway(3),
undoDns(4),
undoNbns(5),
undoNbType(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flag of undo-operation for hwDHCPSGlobalPoolParaTable."
::= { hwDHCPSGlobalPoolParaEntry 13 }
hwDHCPSGlobalPoolIPInUseReset OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the auto binding ip of the given global
pool for DHCP server."
::= { hwDHCPSGlobalPoolParaEntry 14 }
-- =================================================================
-- 4th Table of hwDHCPServerMibObject: hwDHCPSGlobalPoolOptionTable
-- =================================================================
hwDHCPSGlobalPoolOptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSGlobalPoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring options to DHCP global pools."
::= { hwDHCPServerMibObject 4 }
hwDHCPSGlobalPoolOptionEntry OBJECT-TYPE
SYNTAX HwDHCPSGlobalPoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the objects for configuring
options to DHCP global pools."
INDEX { hwDHCPSGlobalPoolName, hwDHCPSGlobalPoolOptionCode }
::= { hwDHCPSGlobalPoolOptionTable 1 }
HwDHCPSGlobalPoolOptionEntry ::=
SEQUENCE
{
hwDHCPSGlobalPoolOptionCode INTEGER,
hwDHCPSGlobalPoolOptionType INTEGER,
hwDHCPSGlobalPoolOptionAscii OCTET STRING,
hwDHCPSGlobalPoolOptionHexString OCTET STRING,
hwDHCPSGlobalPoolOptionIPString OCTET STRING,
hwDHCPSGlobalPoolOptionRowStatus RowStatus
}
hwDHCPSGlobalPoolOptionCode OBJECT-TYPE
SYNTAX INTEGER(1..254)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Option code."
::= { hwDHCPSGlobalPoolOptionEntry 1 }
hwDHCPSGlobalPoolOptionType OBJECT-TYPE
SYNTAX INTEGER
{
ascii(1),
hex(2),
ip(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Option type."
::= { hwDHCPSGlobalPoolOptionEntry 2 }
hwDHCPSGlobalPoolOptionAscii OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ascii string of an option."
::= { hwDHCPSGlobalPoolOptionEntry 3 }
hwDHCPSGlobalPoolOptionHexString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..143))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Hex string of an option. 1st to 16th hex strings,
which are 2 bytes, 4 bytes, 6 bytes or 8 bytes,
can be configured at most simultaneously.
That means the format of each string
must be '12', '1234', '123456' or '12345678'."
::= { hwDHCPSGlobalPoolOptionEntry 4 }
hwDHCPSGlobalPoolOptionIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ip string of an option. 1 to 8 ip addresses can
be configured at most simultaneously."
::= { hwDHCPSGlobalPoolOptionEntry 5 }
hwDHCPSGlobalPoolOptionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy."
::= { hwDHCPSGlobalPoolOptionEntry 6 }
-- =================================================================
-- 5th Table of hwDHCPServerMibObject:hwDHCPSGlobalTreeTable
-- =================================================================
hwDHCPSGlobalTreeTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSGlobalTreeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the information of the tree of
DHCP global pools."
::= { hwDHCPServerMibObject 5 }
hwDHCPSGlobalTreeEntry OBJECT-TYPE
SYNTAX HwDHCPSGlobalTreeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of objects containing the information
for displaying the tree of DHCP global pools."
INDEX { hwDHCPSGlobalPoolName }
::= { hwDHCPSGlobalTreeTable 1 }
HwDHCPSGlobalTreeEntry ::=
SEQUENCE
{
hwDHCPSGlobalTreeParentNodeName OCTET STRING,
hwDHCPSGlobalTreeChildNodeName OCTET STRING,
hwDHCPSGlobalTreePreSiblingNodeName OCTET STRING,
hwDHCPSGlobalTreeSiblingNodeName OCTET STRING
}
hwDHCPSGlobalTreeParentNodeName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pool name of the parent node."
::= { hwDHCPSGlobalTreeEntry 1 }
hwDHCPSGlobalTreeChildNodeName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pool name of the child node."
::= { hwDHCPSGlobalTreeEntry 2 }
hwDHCPSGlobalTreePreSiblingNodeName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pool name of the presibling node."
::= { hwDHCPSGlobalTreeEntry 3 }
hwDHCPSGlobalTreeSiblingNodeName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pool name of the sibling node."
::= { hwDHCPSGlobalTreeEntry 4 }
-- Part 2: For DHCP server interface pool
--
-- =================================================================
-- 6th Table of hwDHCPServerMibObject: hwDHCPSInterfacePoolParaTable
-- =================================================================
hwDHCPSInterfacePoolParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSInterfacePoolParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring parameters to DHCP interface
pools."
::= { hwDHCPServerMibObject 6 }
hwDHCPSInterfacePoolParaEntry OBJECT-TYPE
SYNTAX HwDHCPSInterfacePoolParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of objects for configuring parameters
to DHCP interface pools.
The index of this entry is the ifIndex of ethernet."
INDEX { ifIndex }
::= { hwDHCPSInterfacePoolParaTable 1 }
HwDHCPSInterfacePoolParaEntry ::=
SEQUENCE
{
hwDHCPSInterfacePoolLeaseDay INTEGER,
hwDHCPSInterfacePoolLeaseHour INTEGER,
hwDHCPSInterfacePoolLeaseMinute INTEGER,
hwDHCPSInterfacePoolLeaseUnlimited INTEGER,
hwDHCPSInterfacePoolDomainName OCTET STRING,
hwDHCPSInterfacePoolClientDNSIPString OCTET STRING,
hwDHCPSInterfacePoolClientDNSIPUndo IpAddress,
hwDHCPSInterfacePoolClientNetbiosType INTEGER,
hwDHCPSInterfacePoolClientNbnsIPString OCTET STRING,
hwDHCPSInterfacePoolClientNbnsIPUndo IpAddress,
hwDHCPSInterfacePoolParaUndoFlag INTEGER,
hwDHCPSInterfacePoolIPInUseReset INTEGER
}
hwDHCPSInterfacePoolLeaseDay OBJECT-TYPE
SYNTAX INTEGER(0..365)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of days of the lease."
DEFVAL { 1 }
::= { hwDHCPSInterfacePoolParaEntry 1 }
hwDHCPSInterfacePoolLeaseHour OBJECT-TYPE
SYNTAX INTEGER(0..23)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of hours of the lease."
DEFVAL { 0 }
::= { hwDHCPSInterfacePoolParaEntry 2 }
hwDHCPSInterfacePoolLeaseMinute OBJECT-TYPE
SYNTAX INTEGER(0..59)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of minutes of the lease."
DEFVAL { 0 }
::= { hwDHCPSInterfacePoolParaEntry 3 }
hwDHCPSInterfacePoolLeaseUnlimited OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
unlimited(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A flag denoting if the lease of a pool is
unlimited."
::= { hwDHCPSInterfacePoolParaEntry 4 }
hwDHCPSInterfacePoolDomainName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Domain name for DHCP clients."
::= { hwDHCPSInterfacePoolParaEntry 5 }
hwDHCPSInterfacePoolClientDNSIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"String of DNS server ip addresses for DHCP clients.
Since mostly 8 ip can be configured for a pool
totally, a string is defined to get or configure 8
ip at a time."
::= { hwDHCPSInterfacePoolParaEntry 6 }
hwDHCPSInterfacePoolClientDNSIPUndo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A DNS server ip address to delete. This object
is only for deleting a given ip of DNS server."
::= { hwDHCPSInterfacePoolParaEntry 7 }
hwDHCPSInterfacePoolClientNetbiosType OBJECT-TYPE
SYNTAX INTEGER
{
null(0),
bnode(1),
pnode(2),
mnode(4),
hnode(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NetBios node type for DHCP clients."
DEFVAL { 0 }
::= { hwDHCPSInterfacePoolParaEntry 8 }
hwDHCPSInterfacePoolClientNbnsIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"String of NetBios server ip addresses for DHCP
clients. Since mostly 8 ip can be configured for
a pool totally, so a string is defined to get or
configure 8 ip at a time."
::= { hwDHCPSInterfacePoolParaEntry 9 }
hwDHCPSInterfacePoolClientNbnsIPUndo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A NetBios server ip address to delete. This
object is only for deleting a given ip of NetBios
server."
::= { hwDHCPSInterfacePoolParaEntry 10 }
hwDHCPSInterfacePoolParaUndoFlag OBJECT-TYPE
SYNTAX INTEGER
{
undoDomain(1),
undoLease(2),
undoDns(4),
undoNbns(5),
undoNbType(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flag of undo-operation for
hwDHCPSInterfacePoolParaTable."
::= { hwDHCPSInterfacePoolParaEntry 11 }
hwDHCPSInterfacePoolIPInUseReset OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the auto binding ip of the given interface
pool for DHCP server."
::= { hwDHCPSInterfacePoolParaEntry 12 }
-- =====================================================================
-- 7th Table of hwDHCPServerMibObject: hwDHCPSInterfacePoolOptionTable
-- =====================================================================
hwDHCPSInterfacePoolOptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSInterfacePoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring options to DHCP interface pools."
::= { hwDHCPServerMibObject 7 }
hwDHCPSInterfacePoolOptionEntry OBJECT-TYPE
SYNTAX HwDHCPSInterfacePoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of objects for configuring options
to DHCP interface pools.
The index of this entry is the ifIndex of ethernet."
INDEX { ifIndex, hwDHCPSInterfacePoolOptionCode }
::= { hwDHCPSInterfacePoolOptionTable 1 }
HwDHCPSInterfacePoolOptionEntry ::=
SEQUENCE
{
hwDHCPSInterfacePoolOptionCode INTEGER,
hwDHCPSInterfacePoolOptionType INTEGER,
hwDHCPSInterfacePoolOptionAscii OCTET STRING,
hwDHCPSInterfacePoolOptionHexString OCTET STRING,
hwDHCPSInterfacePoolOptionIPString OCTET STRING,
hwDHCPSInterfacePoolOptionRowStatus RowStatus
}
hwDHCPSInterfacePoolOptionCode OBJECT-TYPE
SYNTAX INTEGER(1..254)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Option Code."
::= { hwDHCPSInterfacePoolOptionEntry 1 }
hwDHCPSInterfacePoolOptionType OBJECT-TYPE
SYNTAX INTEGER
{
ascii(1),
hex(2),
ip(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Option type."
::= { hwDHCPSInterfacePoolOptionEntry 2 }
hwDHCPSInterfacePoolOptionAscii OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ascii string of an option."
::= { hwDHCPSInterfacePoolOptionEntry 3 }
hwDHCPSInterfacePoolOptionHexString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..143))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Hex string of an option. 1st to 16th hex strings,
which are 2 bytes, 4 bytes, 6 bytes or 8 bytes,
can be configured at most simultaneously.
That means the format of each string
must be '12', '1234', '123456' or '12345678'."
::= { hwDHCPSInterfacePoolOptionEntry 4 }
hwDHCPSInterfacePoolOptionIPString OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..129))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ip string of an option. 1 to 8 ip addresses can
be configured at most simultaneously."
::= { hwDHCPSInterfacePoolOptionEntry 5 }
hwDHCPSInterfacePoolOptionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy."
::= { hwDHCPSInterfacePoolOptionEntry 6 }
-- =========================================================================
-- 8th Table of hwDHCPServerMibObject: hwDHCPSInterfacePoolStaticBindTable
-- =========================================================================
hwDHCPSInterfacePoolStaticBindTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSInterfacePoolStaticBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring static binding to DHCP
interface pools."
::= { hwDHCPServerMibObject 8 }
hwDHCPSInterfacePoolStaticBindEntry OBJECT-TYPE
SYNTAX HwDHCPSInterfacePoolStaticBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of objects for configuring static
binding to DHCP interface pools.
The index of this entry is the ifIndex of ethernet."
INDEX { ifIndex, hwDHCPSInterfacePoolStaticBindIP }
::= { hwDHCPSInterfacePoolStaticBindTable 1 }
HwDHCPSInterfacePoolStaticBindEntry ::=
SEQUENCE
{
hwDHCPSInterfacePoolStaticBindIP IpAddress,
hwDHCPSInterfacePoolStaticBindMac MacAddress,
hwDHCPSInterfacePoolStaticBindRowStatus RowStatus
}
hwDHCPSInterfacePoolStaticBindIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ip address in static binding for DHCP
interface pools."
::= { hwDHCPSInterfacePoolStaticBindEntry 1 }
hwDHCPSInterfacePoolStaticBindMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Hardware address in static binding for DHCP
interface pools."
::= { hwDHCPSInterfacePoolStaticBindEntry 2 }
hwDHCPSInterfacePoolStaticBindRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy."
::= { hwDHCPSInterfacePoolStaticBindEntry 3 }
-- Part 3: For DHCP server
--
-- =================================================================
-- 9th Table of hwDHCPServerMibObject: hwDHCPSIPInUseTable
-- =================================================================
hwDHCPSIPInUseTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDHCPSIPInUseEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table for displaying the information of ip in use
for DHCP server pools."
::= { hwDHCPServerMibObject 9 }
hwDHCPSIPInUseEntry OBJECT-TYPE
SYNTAX HwDHCPSIPInUseEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry of objects for displaying information
of ip in use for DHCP server pools."
INDEX { hwDHCPSIPInUseHAddr }
::= { hwDHCPSIPInUseTable 1 }
HwDHCPSIPInUseEntry ::=
SEQUENCE
{
hwDHCPSIPInUseHAddr MacAddress,
hwDHCPSIPInUseIP IpAddress,
hwDHCPSIPInUseEndLease OCTET STRING,
hwDHCPSIPInUseType INTEGER,
hwDHCPSIPInUsePoolName OCTET STRING,
hwDHCPSIPInUseInterface INTEGER,
hwDHCPSIPInUseVlan INTEGER,
hwDHCPSIPInUseAtmpvc INTEGER
}
hwDHCPSIPInUseHAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Hardware address."
::= { hwDHCPSIPInUseEntry 1 }
hwDHCPSIPInUseIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Ip address in use."
::= { hwDHCPSIPInUseEntry 2 }
hwDHCPSIPInUseEndLease OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..20))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"End time of lease.
The structure of the OCTET STRING is
month/day/year hour:munite:second --
MM/DD/YYYY hh:mm:ss. "
::= { hwDHCPSIPInUseEntry 3 }
hwDHCPSIPInUseType OBJECT-TYPE
SYNTAX INTEGER
{
manual(1),
auto(2),
release(3)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Type of binding."
::= { hwDHCPSIPInUseEntry 4 }