summaryrefslogtreecommitdiff
path: root/MIBS/telco-systems/binos/PRVT-DHCP-MIB
blob: 8ff8dd4f7a61ec51fc1125e88c4381fbcb1214de (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
-- *********************************************************************
-- *********************************************************************
-- ** Filename: PRVT-DHCP-MIB.mib
-- ** Project: T - Ethernet and Fast Ethernet IP Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2001, BATM Advanced Communications. All rights reserved.
-- WARNING:
--
-- BY UTILIZING THIS FILE, YOU AGREE TO THE FOLLOWING:
--
-- This file is the property of BATM Advanced Communications.
-- BATM Advanced Communications retains all title and
-- ownership in the Specification, including any revisions.

-- BATM Advanced Communications grants all interested parties a non-exclusive
-- license to use and distribute an unmodified copy of this
-- Specification in connection with management of BATM Advanced Communications
-- and Telco Systems products, and without fee, provided that the following
-- conditions are met:
-- 1. Redistributions of this specification must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- 3. The name of the BATM Advanced Communications MAY NOT be used to endorse
-- or promote products derived from this specification without specific prior written
-- permission.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SPECIFICATIONS CONTAINED IN THIS FILE ARE
-- PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES
-- OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-- IN NO EVENT SHALL BATM BE LIABLE FOR ANY DAMAGES WHATSOEVER
-- INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
-- PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR
-- OTHER CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE, OR INABILITY
-- TO USE, THE SPECIFICATION CONTAINED IN THIS FILE.
PRVT-DHCP-MIB DEFINITIONS ::= BEGIN

IMPORTS

MODULE-IDENTITY,
OBJECT-TYPE,
IpAddress,
Counter32,
Unsigned32,
Integer32
FROM SNMPv2-SMI

DisplayString,
MacAddress,
TruthValue,
RowStatus
FROM SNMPv2-TC

switch
FROM PRVT-SWITCH-MIB;

prvtDHCPMib MODULE-IDENTITY
LAST-UPDATED "200502160000Z"
ORGANIZATION "BATM Advanced Communication"
CONTACT-INFO
"BATM/Telco Systems Support team
Email:
For North America: techsupport@telco.com
For North Europe: support@batm.de, info@batm.de
For the rest of the world: techsupport@telco.com"

DESCRIPTION
"DHCP"

-- revision history
REVISION "200502160000Z"
DESCRIPTION
"Fixed spelling errors and changed the contact info."

REVISION "200305060000Z"
DESCRIPTION
"Move to SMI-V2."

REVISION "200205300000Z"
DESCRIPTION
"Initial version. This revision enables monitoring
of the DHCP server status only."
::= { switch 105 }

prvtDHCPObjects OBJECT IDENTIFIER ::= { prvtDHCPMib 1 }
prvtDHCPNotifications OBJECT IDENTIFIER ::= { prvtDHCPMib 2 }

dhcpPackets OBJECT IDENTIFIER ::= { prvtDHCPObjects 1 }
dhcpRanges OBJECT IDENTIFIER ::= { prvtDHCPObjects 2 }
dhcpSubnets OBJECT IDENTIFIER ::= { prvtDHCPObjects 3 }
dhcpHosts OBJECT IDENTIFIER ::= { prvtDHCPObjects 4 }
dhcpOptions OBJECT IDENTIFIER ::= { prvtDHCPObjects 5 }
dhcpPorts OBJECT IDENTIFIER ::= { prvtDHCPObjects 6 }
dhcpVlans OBJECT IDENTIFIER ::= { prvtDHCPObjects 7 }
dhcpMiscSettings OBJECT IDENTIFIER ::= { prvtDHCPObjects 8 }
dhcpRRSettings OBJECT IDENTIFIER ::= { prvtDHCPObjects 9 }

dhcpStaticHosts OBJECT IDENTIFIER ::= { dhcpHosts 1 }
dhcpDynamicHosts OBJECT IDENTIFIER ::= { dhcpHosts 2 }

dhcpStatusTotalNoOfDiscovers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
discovery messages received"
::= { dhcpPackets 1 }

dhcpStatusTotalNoOfRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
requests received"
::= { dhcpPackets 2 }

dhcpStatusTotalNoOfReleases OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
releases received"
::= { dhcpPackets 3 }

dhcpStatusTotalNoOfOffers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
offers sent"
::= { dhcpPackets 4 }

dhcpStatusTotalNoOfAcks OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
ACKs received"
::= { dhcpPackets 5 }

dhcpStatusTotalNoOfNacks OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
NACKs received"
::= { dhcpPackets 6 }

dhcpStatusTotalNoOfDeclines OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the number of
declines"
::= { dhcpPackets 7 }

-- Range usage table

dhcpRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ranges maintained by the server"
::= { dhcpRanges 1 }

dhcpRangeEntry OBJECT-TYPE
SYNTAX DhcpRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to a range"
INDEX {dhcpRangeStartIp}
::= { dhcpRangeTable 1 }

DhcpRangeEntry ::= SEQUENCE {
dhcpRangeStartIp IpAddress,
dhcpRangeStopIp IpAddress,
dhcpRangeNoAddInUse Counter32,
dhcpRangeNoAddFree Counter32,
dhcpRangeCircuitID DisplayString,
dhcpRangeCircuitIDType INTEGER,
dhcpRangeRangeName DisplayString,
dhcpRangeSubnetIp IpAddress,
dhcpRangeSubnetName DisplayString,
dhcpRangeRowStatus RowStatus
}

dhcpRangeStartIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the range start address "
::= { dhcpRangeEntry 1 }

dhcpRangeStopIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the range stop address "
::= { dhcpRangeEntry 2 }

dhcpRangeNoAddInUse OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of addresses in use"
::= { dhcpRangeEntry 3 }

dhcpRangeNoAddFree OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of free addresses"
::= { dhcpRangeEntry 4 }

dhcpRangeCircuitID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is circuit-ID of that range "
::= { dhcpRangeEntry 5 }

dhcpRangeCircuitIDType OBJECT-TYPE
SYNTAX INTEGER {
string(1),
hex(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is circuit-ID type of that range "
::= { dhcpRangeEntry 6 }

dhcpRangeRangeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the range name "
::= { dhcpRangeEntry 7 }

dhcpRangeSubnetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the range start address "
::= { dhcpRangeEntry 8 }

dhcpRangeSubnetName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subnet name, related to the range"
::= { dhcpRangeEntry 9 }

dhcpRangeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the status of the row. Setting of this field to active enables range
creation"
::= { dhcpRangeEntry 10 }

-- Subnets table

dhcpSubnetTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of subnets maintained by the server"
::= { dhcpSubnets 1 }

dhcpSubnetEntry OBJECT-TYPE
SYNTAX DhcpSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to a single subnet"
INDEX {dhcpSubnetIp}
::= { dhcpSubnetTable 1 }

DhcpSubnetEntry ::= SEQUENCE {
dhcpSubnetIp IpAddress,
dhcpSubnetMask IpAddress,
dhcpSubnetName DisplayString,
dhcpSubnetNoAddInUse Counter32,
dhcpSubnetNoAddFree Counter32,
dhcpSubnetRowStatus RowStatus
}

dhcpSubnetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the subnet IP address "
::= { dhcpSubnetEntry 1 }

dhcpSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the subnet netmask "
::= { dhcpSubnetEntry 2 }

dhcpSubnetName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the subnet name"
::= { dhcpSubnetEntry 3 }

dhcpSubnetNoAddInUse OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of addresses in use"
::= { dhcpSubnetEntry 4 }

dhcpSubnetNoAddFree OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of addresses that are free "
::= { dhcpSubnetEntry 5 }

dhcpSubnetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the status of the row. Setting of this field to active enables
subnet creation"
::= { dhcpSubnetEntry 6 }

-- Static Hosts table

dhcpStaticHostsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpStaticHostsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of hosts with fixed IP addresses maintained by the server"
::= { dhcpStaticHosts 1 }

dhcpStaticHostsEntry OBJECT-TYPE
SYNTAX DhcpStaticHostsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row, corresponding to a subnet"
INDEX {dhcpStaticHostIPAddress}
::= { dhcpStaticHostsTable 1 }

DhcpStaticHostsEntry ::= SEQUENCE {
dhcpStaticHostIPAddress IpAddress,
dhcpStaticHostName DisplayString,
dhcpStaticHostConnected TruthValue,
dhcpStaticHostMACAddr MacAddress,
dhcpStaticHostFilename DisplayString,
dhcpStaticHostBootpIP IpAddress,
dhcpStaticHostServer DisplayString,
dhcpStatisHostSnoofPort Counter32,
dhcpStaticHostRowStatus RowStatus
}

dhcpStaticHostIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fixed IP address, reserved for this host"
::= { dhcpStaticHostsEntry 1 }

dhcpStaticHostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the host name"
::= { dhcpStaticHostsEntry 2 }

dhcpStaticHostConnected OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the currently connected status of the host.
The value TRUE means that this host has requested this IP address"
::= { dhcpStaticHostsEntry 3 }

dhcpStaticHostMACAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the specified host MAC address "
::= { dhcpStaticHostsEntry 4 }

dhcpStaticHostFilename OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the host file name"
::= { dhcpStaticHostsEntry 5 }

dhcpStaticHostBootpIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the bootstrap server IP address for the current host"
::= { dhcpStaticHostsEntry 6 }

dhcpStaticHostServer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is boot server name"
::= { dhcpStaticHostsEntry 7 }

dhcpStatisHostSnoofPort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the coresponding Snoof port if defined"
::= { dhcpStaticHostsEntry 8 }

dhcpStaticHostRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the status of the row. Setting this field to active
enables static host creation"
::= { dhcpStaticHostsEntry 9 }

-- Lease states table

dhcpLeaseStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpLeaseStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of lease states"
::= { dhcpDynamicHosts 1 }

dhcpLeaseStateEntry OBJECT-TYPE
SYNTAX DhcpLeaseStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to a single lease"
INDEX {dhcpLeaseIp}
::= { dhcpLeaseStateTable 1 }

DhcpLeaseStateEntry ::= SEQUENCE {
dhcpLeaseIp IpAddress,
dhcpLeaseName DisplayString,
dhcpLeaseETime DisplayString,
dhcpLeaseMac MacAddress,
dhcpLeaseSnoofPort Counter32
}

dhcpLeaseIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the lease IP address "
::= { dhcpLeaseStateEntry 1 }

dhcpLeaseName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the lease name"
::= { dhcpLeaseStateEntry 2 }

dhcpLeaseETime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lease expiration time"
::= { dhcpLeaseStateEntry 3 }

dhcpLeaseMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the lease MAC address "
::= { dhcpLeaseStateEntry 4 }

dhcpLeaseSnoofPort OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the corresponding Snoof port, if defined"
::= { dhcpLeaseStateEntry 5 }

-- Options table

dhcpOptionsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpOptionsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of options set on the server"
::= { dhcpOptions 1 }

dhcpOptionsEntry OBJECT-TYPE
SYNTAX DhcpOptionsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to a set of options"
INDEX {dhcpOptionsSubnetIp}
::= { dhcpOptionsTable 1 }

DhcpOptionsEntry ::= SEQUENCE {
dhcpOptionsSubnetIp DisplayString,
dhcpOptionsMaxLTime Counter32,
dhcpOptionsDfltLTime Counter32,
dhcpOptionsRouter IpAddress,
dhcpOptionsBrcstAddr IpAddress,
dhcpOptionsSubnetMask IpAddress,
dhcpOptionsDomainName DisplayString,
dhcpOptionsMeritDump DisplayString,
dhcpOptionsRootPath DisplayString,
dhcpOptionsBootStSrv IpAddress,
dhcpOptionsBootFileName DisplayString,
--
dhcpOptionsDNSServer1 IpAddress,
dhcpOptionsDNSServer2 IpAddress,
dhcpOptionsDNSServer3 IpAddress,
dhcpOptionsDNSServer4 IpAddress,
dhcpOptionsDNSServer5 IpAddress,
--
dhcpOptionsLogServer1 IpAddress,
dhcpOptionsLogServer2 IpAddress,
dhcpOptionsLogServer3 IpAddress,
dhcpOptionsLogServer4 IpAddress,
dhcpOptionsLogServer5 IpAddress,
--
dhcpOptionsWinsServer1 IpAddress,
dhcpOptionsWinsServer2 IpAddress,
dhcpOptionsWinsServer3 IpAddress,
dhcpOptionsWinsServer4 IpAddress,
dhcpOptionsWinsServer5 IpAddress
}

dhcpOptionsSubnetIp OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the subnet IP address "
::= { dhcpOptionsEntry 1 }

dhcpOptionsMaxLTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the max-lease-time option "
::= { dhcpOptionsEntry 2 }

dhcpOptionsDfltLTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the default-lease-time option "
::= { dhcpOptionsEntry 3 }

dhcpOptionsRouter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the router option "
::= { dhcpOptionsEntry 4 }

dhcpOptionsBrcstAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the network broadcast address option "
::= { dhcpOptionsEntry 5 }

dhcpOptionsSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the network subnet mask option "
::= { dhcpOptionsEntry 6 }

dhcpOptionsDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the domain-name option "
::= { dhcpOptionsEntry 7 }

dhcpOptionsMeritDump OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the merit-dump option "
::= { dhcpOptionsEntry 8 }

dhcpOptionsRootPath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the root-path option "
::= { dhcpOptionsEntry 9 }

dhcpOptionsBootStSrv OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the bootstrap server IP address "
::= { dhcpOptionsEntry 10 }

dhcpOptionsBootFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the bootstrap filename option "
::= { dhcpOptionsEntry 11 }

dhcpOptionsDNSServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the first DNS server option "
::= { dhcpOptionsEntry 12 }

dhcpOptionsDNSServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the second DNS server option "
::= { dhcpOptionsEntry 13 }

dhcpOptionsDNSServer3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the third DNS server option "
::= { dhcpOptionsEntry 14 }

dhcpOptionsDNSServer4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fourth DNS server option "
::= { dhcpOptionsEntry 15 }

dhcpOptionsDNSServer5 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fifth DNS server option "
::= { dhcpOptionsEntry 16 }

dhcpOptionsLogServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the first log-server option "
::= { dhcpOptionsEntry 17 }

dhcpOptionsLogServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the second log-server option "
::= { dhcpOptionsEntry 18 }

dhcpOptionsLogServer3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the third log-server option "
::= { dhcpOptionsEntry 19 }

dhcpOptionsLogServer4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fourth log-server option "
::= { dhcpOptionsEntry 20 }

dhcpOptionsLogServer5 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fifth log-server option "
::= { dhcpOptionsEntry 21 }

dhcpOptionsWinsServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the first WINS server option "
::= { dhcpOptionsEntry 22 }

dhcpOptionsWinsServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the second WINS server option "
::= { dhcpOptionsEntry 23 }

dhcpOptionsWinsServer3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the third WINS server option "
::= { dhcpOptionsEntry 24 }

dhcpOptionsWinsServer4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fourth WINS server option "
::= { dhcpOptionsEntry 25 }

dhcpOptionsWinsServer5 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the fifth WINS server option "
::= { dhcpOptionsEntry 26 }

-- Misc DHCP server settings

dhcpDBExpire OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Expire time for internal DHCP database "
::= { dhcpMiscSettings 1 }

dhcpTFTPServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of TFTP server to store the DHCP database remotely "
::= { dhcpMiscSettings 2 }

dhcpFTPServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of FTP server to store the DHCP database remotely "
::= { dhcpMiscSettings 3 }

dhcpFTPServerUser OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Username for remote FTP server "
::= { dhcpMiscSettings 4 }

dhcpFTPServerPass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Password for remote FTP server "
::= { dhcpMiscSettings 5 }

dhcpRemoteDBDelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Delay between consecutive database transfers to remote server "
::= { dhcpMiscSettings 6 }

dhcpRemoteDBFilename OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP Leases remote database filename"
::= { dhcpMiscSettings 7 }

dhcpUnknownCircuitIDPolicy OBJECT-TYPE
SYNTAX INTEGER {
permit(1),
deny(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unknown circuit-ID policy "
::= { dhcpMiscSettings 8 }

dhcpEnableServer OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable DHCP server operation "
::= { dhcpMiscSettings 9 }

-- Port settings table

dhcpPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of DHCP settings related to ports "
::= { dhcpPorts 1 }

dhcpPortEntry OBJECT-TYPE
SYNTAX DhcpPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"These are the physical port settings."
INDEX {dhcpPort}
::= { dhcpPortTable 1 }

DhcpPortEntry ::= SEQUENCE {
dhcpPort Integer32,
dhcpMaxPortIP Counter32,
dhcpPortSnoof TruthValue,
dhcpPortServiceEnable TruthValue
}

dhcpPort OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the port number."
::= { dhcpPortEntry 1 }

dhcpMaxPortIP OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the maximum IP addresses to be given via the current port."
::= { dhcpPortEntry 2 }

dhcpPortSnoof OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a check for enabling/disabling Snoof on the current port."
::= { dhcpPortEntry 3 }

dhcpPortServiceEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a check for enabling/disabling DHCP service on the current port."
::= { dhcpPortEntry 4 }

-- Vlan settings table

dhcpVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of DHCP VLAN settings."
::= { dhcpVlans 1 }

dhcpVlanEntry OBJECT-TYPE
SYNTAX DhcpVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to a single VLAN setting."
INDEX {dhcpVlanID}
::= { dhcpVlanTable 1 }

DhcpVlanEntry ::= SEQUENCE {
dhcpVlanID Unsigned32,
dhcpVlanEnable TruthValue
}

dhcpVlanID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the VLAN ID."
::= { dhcpVlanEntry 1 }

dhcpVlanEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is enable/disable DHCP service status per VLAN."
::= { dhcpVlanEntry 2 }

-- RR settings table

dhcpRRTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpRREntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of DHCP round-robin settings."
::= { dhcpRRSettings 1 }

dhcpRREntry OBJECT-TYPE
SYNTAX DhcpRREntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the row corresponding to single VLAN setting."
INDEX {dhcpRRif}
::= { dhcpRRTable 1 }

DhcpRREntry ::= SEQUENCE {
dhcpRRif DisplayString,
dhcpRREnable TruthValue
}

dhcpRRif OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the IP interface name."
::= { dhcpRREntry 1 }

dhcpRREnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is enable/disable DHCP round-robin feature per interface."
::= { dhcpRREntry 2 }

END