-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCT-FASTPATH-DHCPSERVER-MIB
1015 lines (901 loc) · 43.1 KB
/
CT-FASTPATH-DHCPSERVER-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
CT-FASTPATH-DHCPSERVER-MIB DEFINITIONS ::= BEGIN
-- LVL7 FASTPATH DHCP Server MIB
-- Copyright LVL7 Systems (2002-2005) All rights reserved.
-- This SNMP Management Information Specification
-- embodies LVL7 System's confidential and proprietary
-- intellectual property. LVL7 Systems retains all title
-- and ownership in the Specification including any revisions.
-- This Specification is supplied "AS IS", LVL7 Systems
-- makes no warranty, either expressed or implied,
-- as to the use, operation, condition, or performance of the
-- Specification.
-- This module provides authoritative definitions for Cabletron's
-- CT-FASTPATH-DHCPSERVER-MIB.
--
-- This module will be extended, as needed.
--
-- Enterasys Networks reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Enterasys Networks
-- to determine whether any such changes have been made.
--
-- In no event shall Enterasys Networks be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Enterasys
-- Networks has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Enterasys grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Enterasys and Cabletron products.
--
-- Copyright January 2006 Enterasys Networks, Inc.
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress,
Integer32, Unsigned32, TimeTicks, Counter32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus, RowPointer, MacAddress,
StorageType, TruthValue, DisplayString, PhysAddress
FROM SNMPv2-TC
-- Place this MIB on CTRON experimental branch.
ctDhcpServerExpMib FROM CTRON-MIB-NAMES;
ctFastPathDHCPServerMIB MODULE-IDENTITY
LAST-UPDATED "200601161932Z" -- Mon Jan 16 19:32 UTC 2006
ORGANIZATION "Enterasys Networks, Inc."
CONTACT-INFO
"Postal: Enterasys Networks
50 Minuteman Rd.
Andover, MA 01810-1008
USA
Phone: +1 978 684 1000
E-mail: [email protected]
WWW: http://www.enterasys.com"
DESCRIPTION
"The Enterasys MIB for FASTPATH DHCP Server"
::= { ctDhcpServerExpMib 1 }
--**************************************************************************************
-- ctAgentDhcpServerGroup -> contains MIB objects displaying various properties of a DHCP server
--
--**************************************************************************************
ctAgentDhcpServerGroup OBJECT IDENTIFIER ::= { ctFastPathDHCPServerMIB 1 }
ctAgentDhcpServerAdminMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Admin-mode of the DHCP Server."
DEFVAL { disable }
::= { ctAgentDhcpServerGroup 1 }
ctAgentDhcpServerPingPktNos OBJECT-TYPE
SYNTAX INTEGER (0 | 2..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The no. of packets a DHCP Server sends to a pool address as part of a ping operation.Setting the value of ping-packets to zero turns off DHCP Server ping operation ."
DEFVAL { 2 }
::= { ctAgentDhcpServerGroup 2 }
ctAgentDhcpServerAutomaticBindingsNos OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of IP addresses that have been assigned automatically."
::= { ctAgentDhcpServerGroup 3 }
ctAgentDhcpServerExpiredBindingsNos OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of expired leases."
::= { ctAgentDhcpServerGroup 4 }
ctAgentDhcpServerMalformedMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of malformed(truncated or corrupt) messages that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 5 }
ctAgentDhcpServerDISCOVERMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPDISCOVER that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 6 }
ctAgentDhcpServerREQUESTMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPREQUEST that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 7 }
ctAgentDhcpServerDECLINEMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPDECLINE that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 8 }
ctAgentDhcpServerRELEASEMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPRELEASE that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 9 }
ctAgentDhcpServerINFORMMessagesReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPINFORM that have been received by the DHCP server."
::= { ctAgentDhcpServerGroup 10 }
ctAgentDhcpServerOFFERMessagesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPOFFER that have been sent by the DHCP server."
::= { ctAgentDhcpServerGroup 11 }
ctAgentDhcpServerACKMessagesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPACK that have been sent by the DHCP server."
::= { ctAgentDhcpServerGroup 12 }
ctAgentDhcpServerNAKMessagesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The no. of DHCP messages of type DHCPNAK that have been sent by the DHCP server."
::= { ctAgentDhcpServerGroup 13 }
ctAgentDhcpServerClearStatistics OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Clears the DHCP server statistics."
DEFVAL { disable }
::= { ctAgentDhcpServerGroup 14 }
ctAgentDhcpServerBootpAutomatic OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to enable or disable autmatic address allocation to bootp clients from dynamic address pools."
DEFVAL { disable }
::= { ctAgentDhcpServerGroup 15 }
--**********************************************************************************
-- ctAgentDhcpServerPoolConfigGroup
-- This group contains three tables : ctAgentDhcpServerPoolConfigTable,
-- ctAgentDhcpServerBindingTable,
--
-- ctAgentDhcpServerPoolConfigTable -> This table is used to configure a
-- new DHCP address pool on a DHCP server. This table
-- is also used to delete a configured DHCP address pool.
--
-- ctAgentDhcpServerPoolAllocationTable -> This table is used to configure a DHCP address
-- pool for dynamic and manual allocations.
--
-- ctAgentDhcpServerExcludedAddressRangeTable -> This table lists the excluded-address ranges
-- for a DHCP Server
--
-- ctAgentDhcpServerPoolOptionTable -> Table for DHCP Server options
--**********************************************************************************
ctAgentDhcpServerPoolConfigGroup OBJECT IDENTIFIER ::= { ctFastPathDHCPServerMIB 2 }
ctAgentDhcpServerPoolNameCreate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0|1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A pool is created by applying write operation
on this MIB object and providing a new pool-name.
Get operation on this MIB object returns a
null-value, as for the purpose of viewing the
pool name, the user should perform the
traversal of ctAgentDhcpServerPoolConfigTable.
For this reason the get operation on object
ctAgentDhcpServerPoolNameCreate becomes insignificant."
::= { ctAgentDhcpServerPoolConfigGroup 1 }
ctAgentDhcpServerPoolConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerPoolConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the DHCP Server Pool configuration entries."
::= { ctAgentDhcpServerPoolConfigGroup 2 }
ctAgentDhcpServerPoolConfigEntry OBJECT-TYPE
SYNTAX AgentDhcpServerPoolConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents entry for a Dhcp server pool."
INDEX { ctAgentDhcpServerPoolIndex }
::= { ctAgentDhcpServerPoolConfigTable 1 }
AgentDhcpServerPoolConfigEntry ::= SEQUENCE {
ctAgentDhcpServerPoolIndex
Unsigned32,
ctAgentDhcpServerPoolName
DisplayString,
ctAgentDhcpServerPoolDefRouter
DisplayString,
ctAgentDhcpServerPoolDNSServer
DisplayString,
ctAgentDhcpServerPoolLeaseTime
Integer32,
ctAgentDhcpServerPoolType
INTEGER,
ctAgentDhcpServerPoolNetbiosNameServer
DisplayString,
ctAgentDhcpServerPoolNetbiosNodeType
INTEGER,
ctAgentDhcpServerPoolNextServer
IpAddress,
ctAgentDhcpServerPoolDomainName
DisplayString,
ctAgentDhcpServerPoolBootfile
DisplayString,
ctAgentDhcpServerPoolRowStatus
RowStatus
}
ctAgentDhcpServerPoolIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..512)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Pool Index, which 'll be used as index for the PoolConfig Table."
::= { ctAgentDhcpServerPoolConfigEntry 1 }
ctAgentDhcpServerPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the DHCP Address pool. This value cannot be modified"
::= { ctAgentDhcpServerPoolConfigEntry 2 }
ctAgentDhcpServerPoolDefRouter OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the default-router list(each default-router is
separated by comma and the list is terminated by semi-colon) for a DHCP client,
an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current default-router list."
::= { ctAgentDhcpServerPoolConfigEntry 3 }
ctAgentDhcpServerPoolDNSServer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the DNS IP servers(each DNS IP server is
separated by comma and the list is terminated by semi-colon) for a DHCP client,
an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current default-router list."
::= { ctAgentDhcpServerPoolConfigEntry 4 }
ctAgentDhcpServerPoolLeaseTime OBJECT-TYPE
SYNTAX Integer32 (1..86400)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the duration of the lease(in minutes) for an IP address that is assigened from a
DHCP server to a DHCP client. For infinite leases, lease-time value will be set to
86400."
::= { ctAgentDhcpServerPoolConfigEntry 5 }
ctAgentDhcpServerPoolType OBJECT-TYPE
SYNTAX INTEGER{
un-allocated(0),
dynamic(1),
manual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the type of the binding that is associated with this pool."
::= { ctAgentDhcpServerPoolConfigEntry 6 }
ctAgentDhcpServerPoolNetbiosNameServer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the IP address-list of Net BIOS name-servers that are
available to DHCP clients
(each IP address in this list is
separated by comma and the list is terminated by semi-colon),
an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).User should enter a 'null' or 'NULL' string to remove current Net BIOS name-server list."
::= { ctAgentDhcpServerPoolConfigEntry 7 }
ctAgentDhcpServerPoolNetbiosNodeType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
b-node(1),
p-node(2),
m-node(4),
h-node(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the NetBIOS node-type for DHCP clients. 'none' is shown if
node-type is not set to any of the four values."
::= { ctAgentDhcpServerPoolConfigEntry 8 }
ctAgentDhcpServerPoolNextServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This configures the next server in the boot-process of a DHCP clients.User should enter zero(0.0.0.0) to remove the current Next-server address"
::= { ctAgentDhcpServerPoolConfigEntry 9 }
ctAgentDhcpServerPoolDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the domain-name for a DHCP client. User should enter a 'null' or 'NULL' string to remove specified domain-name."
::= { ctAgentDhcpServerPoolConfigEntry 10 }
ctAgentDhcpServerPoolBootfile OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the name of the default boot image for a DHCP client.User should enter a 'null' or 'NULL' string to remove specified bootfile name."
::= { ctAgentDhcpServerPoolConfigEntry 11 }
ctAgentDhcpServerPoolRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable is used according to installation
and removal conventions for conceptual rows. When a pool is created by applying write
operation on 'ctAgentDhcpServerPoolCreateName',row-status becomes 'active'. If row-status for
a poolEntry is set to 'destroy', the corresponding pool gets deleted. "
::= { ctAgentDhcpServerPoolConfigEntry 12 }
--**********************************************************************************
ctAgentDhcpServerPoolAllocationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerPoolAllocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the DHCP Server's pool entries, showing the binding(dynamic/manual)
specific parameters."
::= { ctAgentDhcpServerPoolConfigGroup 3 }
ctAgentDhcpServerPoolAllocationEntry OBJECT-TYPE
SYNTAX AgentDhcpServerPoolAllocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents entry for a Dhcp server's allocation pool."
AUGMENTS { ctAgentDhcpServerPoolConfigEntry }
::= { ctAgentDhcpServerPoolAllocationTable 1 }
-- All objects are of type read-write
AgentDhcpServerPoolAllocationEntry ::= SEQUENCE {
ctAgentDhcpServerPoolAllocationName
DisplayString,
ctAgentDhcpServerDynamicPoolIpAddress
IpAddress,
ctAgentDhcpServerDynamicPoolIpMask
IpAddress,
ctAgentDhcpServerDynamicPoolIpPrefixLength
Unsigned32,
ctAgentDhcpServerPoolAllocationType
INTEGER,
ctAgentDhcpServerManualPoolClientIdentifier
DisplayString,
ctAgentDhcpServerManualPoolClientName
DisplayString,
ctAgentDhcpServerManualPoolClientHWAddr
DisplayString,
ctAgentDhcpServerManualPoolClientHWType
INTEGER,
ctAgentDhcpServerManualPoolIpAddress
IpAddress,
ctAgentDhcpServerManualPoolIpMask
IpAddress,
ctAgentDhcpServerManualPoolIpPrefixLength
Unsigned32
}
ctAgentDhcpServerPoolAllocationName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies name of the DHCP Address pool having dynamic binding.
This value is same as ctAgentDhcpServerPoolName of the
ctAgentDhcpServerPoolConfigTable."
::= { ctAgentDhcpServerPoolAllocationEntry 1 }
ctAgentDhcpServerDynamicPoolIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the DHCP Address pool.
The IP address must be set before setting the IP Mask or IP Prefix Length.
After setting IP address, network -mask, or IP Prefix length must be set in order to change the pool type to dynamic.
This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'manual'."
::= { ctAgentDhcpServerPoolAllocationEntry 2 }
ctAgentDhcpServerDynamicPoolIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The bit-combination that renders which portion of the address of the DHCP
address pool refers to the network or subnet and which part refers to the host.The IP address must have been set before.
This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'manual'."
::= { ctAgentDhcpServerPoolAllocationEntry 3 }
ctAgentDhcpServerDynamicPoolIpPrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the no. of bits that comprise the address-prefix.
The prefix is an alternative way of specifying the network-mask of the client.The IP address must have been set before.
This value shows 0, if the binding type is 'un-allocated',or,'mnaual'."
::= { ctAgentDhcpServerPoolAllocationEntry 4 }
ctAgentDhcpServerPoolAllocationType OBJECT-TYPE
SYNTAX INTEGER{
un-allocated(0),
dynamic(1),
manual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the type of the binding that is associated with this pool."
::= { ctAgentDhcpServerPoolAllocationEntry 5 }
ctAgentDhcpServerManualPoolClientIdentifier OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It specifies the unique identifier (in colon separated hexadecimal format)
of a DHCP client. It is valid for manual bindings only.
It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'.
To set this object, input should be 7 octets long with the hardware
type in the first octet."
::= { ctAgentDhcpServerPoolAllocationEntry 6 }
ctAgentDhcpServerManualPoolClientName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..30))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It specifies the name of a DHCP client.
Client name should't include domain-name.
It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'. "
::= { ctAgentDhcpServerPoolAllocationEntry 7 }
ctAgentDhcpServerManualPoolClientHWAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It specifies the hardware-address of a DHCP client. It is valid for manual bindings only.
It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'.
After hardware-address, hardware-type will be configured."
::= { ctAgentDhcpServerPoolAllocationEntry 8 }
ctAgentDhcpServerManualPoolClientHWType OBJECT-TYPE
SYNTAX INTEGER{
ethernet(1),
ieee802(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It specifies the hardware-type of a DHCP client. It is valid for manual bindings only.
It displays 'unconfigured',if the binding type is 'un-allocated',or,'dynamic'.
Before this, hardware-address must be configured."
DEFVAL { ethernet }
::= { ctAgentDhcpServerPoolAllocationEntry 9 }
ctAgentDhcpServerManualPoolIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the DHCP Address pool for manual binding.
The IP address must be set before setting the IP Mask or IP Prefix Length.After setting IP address, network -mask, or IP Prefix length must be set in order to change the pool type to dynamic.
This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'dynamic'."
::= { ctAgentDhcpServerPoolAllocationEntry 10 }
ctAgentDhcpServerManualPoolIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The bit-combination that renders which portion of the address of the DHCP
address pool for a manual binding refers to the network or subnet and which part refers to the host.
The IP address must have been set before.
This value shows 0.0.0.0, if the binding type is 'un-allocated',or,'dynamic'."
::= { ctAgentDhcpServerPoolAllocationEntry 11 }
ctAgentDhcpServerManualPoolIpPrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the no. of bits that comprise the address-prefix.
The prefix is an alternative way of specifying the network-mask of the client.The IP address must have been set before.
This value shows 0, if the binding type is 'un-allocated',or,'dynamic'."
::= { ctAgentDhcpServerPoolAllocationEntry 12 }
--***********************************************************************************************
ctAgentDhcpServerExcludedAddressRangeCreate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It sets the IP address-ranges(from low to high) that a
DHCP server should not assign to DHCP clients. Each time
this MIB object is set successfully, one excluded range
of IP address will be set.
It is given in format - start and end IP address
separated by '-' and terminated by ';'.
One example would be - 192.168.36.1-200.1.1.1; .
This sets one excluded range of IP address,which
starts at 192.168.36.1 and ends at 200.1.1.1.
If only start IP address is given,
end IP address is assumed to be equal to the start IP
address. Get operation on this MIB object returns a
null-value, as for the purpose of viewing the
exclude-address ranges, the user should perform the
traversal of ctAgentDhcpServerExcludedAddressRangeTable.
For this reason the get operation on object
ctAgentDhcpServerExcludedAddressRangeCreate becomes insignificant."
::= { ctAgentDhcpServerPoolConfigGroup 4 }
ctAgentDhcpServerExcludedAddressRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerExcludedAddressRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the DHCP Server Pool configuration entries."
::= { ctAgentDhcpServerPoolConfigGroup 5 }
ctAgentDhcpServerExcludedAddressRangeEntry OBJECT-TYPE
SYNTAX AgentDhcpServerExcludedAddressRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents entry for a Dhcp server excluded address range table."
INDEX { ctAgentDhcpServerExcludedRangeIndex }
::= { ctAgentDhcpServerExcludedAddressRangeTable 1 }
-- All objects are of type read-only, except ctAgentDhcpServerExcludedAddressRangeStatus,
-- which is of type read-write
AgentDhcpServerExcludedAddressRangeEntry ::= SEQUENCE {
ctAgentDhcpServerExcludedRangeIndex
Unsigned32,
ctAgentDhcpServerExcludedStartIpAddress
IpAddress,
ctAgentDhcpServerExcludedEndIpAddress
IpAddress,
ctAgentDhcpServerExcludedAddressRangeStatus
RowStatus
}
ctAgentDhcpServerExcludedRangeIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the index of the excluded IP address-range table."
::= { ctAgentDhcpServerExcludedAddressRangeEntry 1 }
ctAgentDhcpServerExcludedStartIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the starting IP address of the excluded address-range."
::= { ctAgentDhcpServerExcludedAddressRangeEntry 2 }
ctAgentDhcpServerExcludedEndIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the ending IP address of the excluded address-range."
::= { ctAgentDhcpServerExcludedAddressRangeEntry 3 }
ctAgentDhcpServerExcludedAddressRangeStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the row-status of the excluded address-range. Implemented values
are - active(1) and destroy(6). For a valid range, the row-satus will return active(1).
When it is set to destroy(6), the corresponding address-range is deleted."
::= { ctAgentDhcpServerExcludedAddressRangeEntry 4 }
--***********************************************************************************************
ctAgentDhcpServerPoolOptionCreate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This sets the option for an existing DHCP Server pool. Here, it is required
to enter the pool-index, for which option is to be set and
the value of the DHCP option code in string-format : pool-index and option code
separated by '-' and terminated by ';', one example would be -> 1-19;
, 1 is the pool-index and 19 is the option code. "
::= { ctAgentDhcpServerPoolConfigGroup 6 }
ctAgentDhcpServerPoolOptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerPoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring DHCP Server options."
::= { ctAgentDhcpServerPoolConfigGroup 7 }
ctAgentDhcpServerPoolOptionEntry OBJECT-TYPE
SYNTAX AgentDhcpServerPoolOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents entry for a Dhcp server option table."
INDEX { ctAgentDhcpServerPoolOptionIndex,
ctAgentDhcpServerPoolOptionCode }
::= { ctAgentDhcpServerPoolOptionTable 1 }
-- All objects are of type read-write, except the indexes ctAgentDhcpServerPoolOptionIndex and
-- ctAgentDhcpServerPoolOptionCode
-- For a particular poolOption entry, option data ( ASCII, HEX and IP Address) can be
-- entered multiple times provided data-format is same each time.
AgentDhcpServerPoolOptionEntry ::= SEQUENCE {
ctAgentDhcpServerPoolOptionIndex
Unsigned32,
ctAgentDhcpServerPoolOptionCode
Unsigned32,
ctAgentDhcpServerOptionPoolName
DisplayString,
ctAgentDhcpServerPoolOptionAsciiData
DisplayString,
ctAgentDhcpServerPoolOptionHexData
DisplayString,
ctAgentDhcpServerPoolOptionIpAddressData
DisplayString,
ctAgentDhcpServerPoolOptionStatus
RowStatus
}
ctAgentDhcpServerPoolOptionIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..512)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Pool Index alongwith option-code, acts as index for the DHCP Server Option table.
"
::= { ctAgentDhcpServerPoolOptionEntry 1 }
ctAgentDhcpServerPoolOptionCode OBJECT-TYPE
SYNTAX Unsigned32 (1..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the DHCP option code. This alongwith pool-index acts as the index of the
DHCP Server Option table."
::= { ctAgentDhcpServerPoolOptionEntry 2 }
ctAgentDhcpServerOptionPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the DHCP Address pool. This value cannot be modified"
::= { ctAgentDhcpServerPoolOptionEntry 3 }
ctAgentDhcpServerPoolOptionAsciiData OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..441))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies an NVT ASCII character string. ASCII character strings
that contain white space must be delimited by quotation marks.
If an ascii optiondata is entered again, it gets concatenated with the
previous ascii data."
::= { ctAgentDhcpServerPoolOptionEntry 4 }
ctAgentDhcpServerPoolOptionHexData OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..1324))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies semi-colon separated hexadecimal data. Two hexadecimal digits
in hexadecimal character string represents one byte . Hexadecimal strings can
be entered in the following formats :
1) continuous hexadecimal digits like -- 0123456789abcdef
2) hexadecimal digits separated by space ' ' -- 01 23 45 67 de 0f
3) Two hexadecimal digits separated by delimeter ':' -- 01:02:a0 de:0f 78:5e
4) Four hexadecimal digits separated by delimeter '.' -- 01ab.c0de.7865
If a Hex optiondata is entered again, it gets concatenated with the
previous Hex data."
::= { ctAgentDhcpServerPoolOptionEntry 5 }
ctAgentDhcpServerPoolOptionIpAddressData OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the IP-address list(each IP-address is
separated by comma and the list is terminated by semi-colon) for a DHCP client,
an example would be 10.10.1.1,192.168.36.1,157.227.44.1;(no spaces in between).
If a IP option is entered again, it gets concatenated with the
previous IP data.
Maximum no. of IP addresses that can be entered at one time is 8.
"
::= { ctAgentDhcpServerPoolOptionEntry 6 }
ctAgentDhcpServerPoolOptionStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the row-status of the DHCP Server Pool option."
::= { ctAgentDhcpServerPoolOptionEntry 7 }
--**************************************************************************************
-- ctAgentDhcpServerLeaseGroup -> contains MIB objects displaying and clearing leases of a DHCP server
--
--**************************************************************************************
ctAgentDhcpServerLeaseGroup OBJECT IDENTIFIER ::= { ctFastPathDHCPServerMIB 3 }
ctAgentDhcpServerLeaseClearAllBindings OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clears All the DHCP server bindings."
DEFVAL { disable }
::= { ctAgentDhcpServerLeaseGroup 1}
ctAgentDhcpServerLeaseTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerLeaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the DHCP Server's Lease entries."
::= { ctAgentDhcpServerLeaseGroup 2 }
ctAgentDhcpServerLeaseEntry OBJECT-TYPE
SYNTAX AgentDhcpServerLeaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents entry for a Dhcp server's leases."
INDEX { ctAgentDhcpServerLeaseIPAddress }
::= { ctAgentDhcpServerLeaseTable 1 }
-- All objects are of type read-only
AgentDhcpServerLeaseEntry ::= SEQUENCE {
ctAgentDhcpServerLeaseIPAddress
IpAddress,
ctAgentDhcpServerLeaseIPMask
IpAddress,
ctAgentDhcpServerLeaseHWAddress
MacAddress,
ctAgentDhcpServerLeaseRemainingTime
TimeTicks,
ctAgentDhcpServerLeaseType
INTEGER,
ctAgentDhcpServerLeaseStatus
RowStatus
}
ctAgentDhcpServerLeaseIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the IP address leased to the client."
::= { ctAgentDhcpServerLeaseEntry 1 }
ctAgentDhcpServerLeaseIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the IP mask of the address leased to the client."
::= { ctAgentDhcpServerLeaseEntry 2 }
ctAgentDhcpServerLeaseHWAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the hardware address of the client."
::= { ctAgentDhcpServerLeaseEntry 3 }
ctAgentDhcpServerLeaseRemainingTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the period for which the lease is valid. It is displayed in days, hours, minutes, and seconds."
::= { ctAgentDhcpServerLeaseEntry 4 }
ctAgentDhcpServerLeaseType OBJECT-TYPE
SYNTAX INTEGER{
automatic(1),
manual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the type of address lease as Automatic or Manual."
::= { ctAgentDhcpServerLeaseEntry 5 }
ctAgentDhcpServerLeaseStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This specifies the row-status of the address-lease. Implemented values
are - active(1) and destroy(6). For a valid range, the row-satus will return active(1).
When it is set to destroy(6), the corresponding address-lease is cleared."
::= { ctAgentDhcpServerLeaseEntry 6 }
--**************************************************************************************
-- ctAgentDhcpServerAddressConflictGroup -> contains MIB objects displaying and clearing
-- address conflicts found by a DHCP server, when addresses are offered to the client.
--
--**************************************************************************************
ctAgentDhcpServerAddressConflictGroup OBJECT IDENTIFIER ::= { ctFastPathDHCPServerMIB 4 }
ctAgentDhcpServerClearAllAddressConflicts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clears all the address-conflicts found by DHCP server,when set to enable."
DEFVAL { disable }
::= { ctAgentDhcpServerAddressConflictGroup 1}
ctAgentDhcpServerAddressConflictLogging OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" It is used to enable, or disables the logging of address-conflicts on a DHCP Server."
DEFVAL { enable }
::= { ctAgentDhcpServerAddressConflictGroup 2}
ctAgentDhcpServerAddressConflictTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcpServerAddressConflictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the conflicting-address entries."
::= { ctAgentDhcpServerAddressConflictGroup 3 }
ctAgentDhcpServerAddressConflictEntry OBJECT-TYPE
SYNTAX AgentDhcpServerAddressConflictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a conflicting-address entry."
INDEX { ctAgentDhcpServerAddressConflictIP }
::= { ctAgentDhcpServerAddressConflictTable 1 }
-- All objects are of type read-only, except ctAgentDhcpServerAddressConflictStatus which is
-- of type read-write
AgentDhcpServerAddressConflictEntry ::= SEQUENCE {
ctAgentDhcpServerAddressConflictIP
IpAddress,
ctAgentDhcpServerAddressConflictDetectionType
INTEGER,
ctAgentDhcpServerAddressConflictDetectionTime
TimeTicks,
ctAgentDhcpServerAddressConflictStatus
RowStatus
}
ctAgentDhcpServerAddressConflictIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the conflicting IP address assigned to the client by DHCP server."
::= { ctAgentDhcpServerAddressConflictEntry 1 }
ctAgentDhcpServerAddressConflictDetectionType OBJECT-TYPE
SYNTAX INTEGER{
ping(1),
gratuitousArp(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This specifies the address-conflict detection-method."
::= { ctAgentDhcpServerAddressConflictEntry 2 }
ctAgentDhcpServerAddressConflictDetectionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current