-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCOSB-DHCP-MIB
executable file
·961 lines (851 loc) · 29.2 KB
/
CISCOSB-DHCP-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
CISCOSB-DHCP-MIB DEFINITIONS ::= BEGIN
-- Title: CISCOSB DHCP Server ROS
-- This Private MIB supports the DHCP Server for ROS
-- Version: 7.30
-- Date: 18 Oct 2003
IMPORTS
OBJECT-TYPE, IpAddress, Unsigned32,
MODULE-IDENTITY FROM SNMPv2-SMI
DisplayString, TruthValue, RowStatus FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
switch001 FROM CISCOSB-MIB
PortList FROM Q-BRIDGE-MIB;
rsDHCP MODULE-IDENTITY
LAST-UPDATED "200310180000Z"
ORGANIZATION "Cisco Small Business"
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Home http://www.cisco.com/smb>;,
Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for DHCP server support in CISCOSB devices."
REVISION "200310180000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 38 }
-- unused:
-- { rsDHCP 1 } .. { rsDHCP 13 }
rsDhcpMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DHCP MIB's version, the current version is 4."
::= { rsDHCP 14 }
-- unused:
-- { rsDHCP 15 } .. { rsDHCP 21 }
-- =======================================================
-- DHCP Relay
-- =======================================================
rlDhcpRelayMaximalNumberOfNonIpVlans OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximal number non-ip vlans that DHCP relay can be confirued on."
-- DEFVAL { 0 }
::= { rsDHCP 23 }
rlDhcpRelayCurrentNumberOfNonIpVlans OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number non-ip vlans that DHCP relay can be confirued on."
-- DEFVAL { 0 }
::= { rsDHCP 24 }
rlDhcpRelayEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the use of the DHCP relay."
-- DEFVAL { false }
::= { rsDHCP 25 }
rlDhcpRelayExists OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows whether the device can function as a DHCP Relay Agent."
::= { rsDHCP 26 }
-- Next Servers Table
rlDhcpRelayNextServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDhcpRelayNextServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DHCP Relay Next Servers configuration Table"
::= { rsDHCP 27 }
rlDhcpRelayNextServerEntry OBJECT-TYPE
SYNTAX RlDhcpRelayNextServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table. DHCP requests are relayed to the
specified next server according to their threshold values."
INDEX { rlDhcpRelayNextServerIpAddr }
::= { rlDhcpRelayNextServerTable 1 }
RlDhcpRelayNextServerEntry ::= SEQUENCE {
rlDhcpRelayNextServerIpAddr
IpAddress,
rlDhcpRelayNextServerSecThreshold
Unsigned32,
rlDhcpRelayNextServerRowStatus
RowStatus
}
rlDhcpRelayNextServerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPAddress of the next configuration server. DHCP Server may
act as a DHCP relay if this parameter is not equal to 0.0.0.0."
::= { rlDhcpRelayNextServerEntry 1 }
rlDhcpRelayNextServerSecThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DHCP requests are relayed only if their SEC field is greater or
equal to the threshold value in order to allow local DHCP Servers
to answer first."
-- DEFVAL {0}
::= { rlDhcpRelayNextServerEntry 2 }
rlDhcpRelayNextServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable displays the validity or invalidity of the entry.
Setting it to 'destroy' has the effect of rendering it inoperative.
The internal effect (row removal) is implementation dependent."
::= { rlDhcpRelayNextServerEntry 3 }
-- =======================================================
-- DHCP relay Interface Table - used for backward compatibility
-- =======================================================
rlDhcpRelayInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDhcpRelayInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The enabled DHCP Relay Interface Table"
::= { rsDHCP 28 }
rlDhcpRelayInterfaceEntry OBJECT-TYPE
SYNTAX RlDhcpRelayInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table. The user can add entry when DHCP relay is enabled on Interface."
INDEX { rlDhcpRelayInterfaceIfindex}
::= { rlDhcpRelayInterfaceTable 1 }
RlDhcpRelayInterfaceEntry ::= SEQUENCE {
rlDhcpRelayInterfaceIfindex INTEGER,
rlDhcpRelayInterfaceUseGiaddr TruthValue, -- obsolete
rlDhcpRelayInterfaceRowStatus RowStatus
}
rlDhcpRelayInterfaceIfindex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Interface on which an user enables a DHCP relay "
::= { rlDhcpRelayInterfaceEntry 1}
rlDhcpRelayInterfaceUseGiaddr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The flag is used to set a DHCP relay interface to use GiAddr in the standard way. Default is TRUE.
The field is not supported."
::= { rlDhcpRelayInterfaceEntry 2 }
rlDhcpRelayInterfaceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Entry status. Can be destroy, active or createAndGo"
::= { rlDhcpRelayInterfaceEntry 3 }
-- =======================================================
-- DHCP relay interface list Table
-- =======================================================
rlDhcpRelayInterfaceListTable OBJECT-TYPE
SYNTAX SEQUENCE OF RLDhcpRelayInterfaceListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one entry. The entry contains port list and vlan lists of interfaces that have configured DHCP relay"
::= { rsDHCP 29}
rlDhcpRelayInterfaceListEntry OBJECT-TYPE
SYNTAX RLDhcpRelayInterfaceListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port list and vlan lists of interfaces that have configured DHCP relay."
INDEX { rlDhcpRelayInterfaceListIndex }
::= { rlDhcpRelayInterfaceListTable 1 }
RLDhcpRelayInterfaceListEntry::= SEQUENCE {
rlDhcpRelayInterfaceListIndex INTEGER,
rlDhcpRelayInterfaceListPortList PortList,
rlDhcpRelayInterfaceListVlanId1To1024 OCTET STRING,
rlDhcpRelayInterfaceListVlanId1025To2048 OCTET STRING,
rlDhcpRelayInterfaceListVlanId2049To3072 OCTET STRING,
rlDhcpRelayInterfaceListVlanId3073To4094 OCTET STRING
}
rlDhcpRelayInterfaceListIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in the table. Already 1."
::= { rlDhcpRelayInterfaceListEntry 1 }
rlDhcpRelayInterfaceListPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"DHCP relay Interface Port List."
::= { rlDhcpRelayInterfaceListEntry 2 }
rlDhcpRelayInterfaceListVlanId1To1024 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" DHCP relay Interface VlanId List 1."
::= { rlDhcpRelayInterfaceListEntry 3 }
rlDhcpRelayInterfaceListVlanId1025To2048 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" DHCP relay Interface VlanId List 2."
::= { rlDhcpRelayInterfaceListEntry 4 }
rlDhcpRelayInterfaceListVlanId2049To3072 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" DHCP relay Interface VlanId List 3."
::= { rlDhcpRelayInterfaceListEntry 5 }
rlDhcpRelayInterfaceListVlanId3073To4094 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" DHCP relay Interface VlanId List 4."
::= { rlDhcpRelayInterfaceListEntry 6 }
-- =======================================================
-- DHCP Server
-- =======================================================
rlDhcpSrvEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable the use of the DHCP Server.
For a router product the default value is TRUE. For a switch product the default is FALSE."
DEFVAL { false }
::= { rsDHCP 30 }
rlDhcpSrvExists OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows whether the device can function as a DHCP Server."
::= { rsDHCP 31 }
rlDhcpSrvDbLocation OBJECT-TYPE
SYNTAX INTEGER {
nvram (1),
flash (2)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Describes where DHCP Server database is stored."
DEFVAL { flash }
::= { rsDHCP 32 }
rlDhcpSrvMaxNumOfClients OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows maximum number of clients that can be
supported by DHCP Server dynamic allocation."
::= { rsDHCP 33 }
rlDhcpSrvDbNumOfActiveEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of active (valid) entries stored in database."
::= { rsDHCP 34 }
rlDhcpSrvDbErase OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value is always false. Setting this variable to true causes erasing all entries in DHCP database."
DEFVAL { false }
::= { rsDHCP 35 }
rlDhcpSrvProbeEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable the use of the DHCP probe before allocating an IP address."
DEFVAL { false }
::= { rsDHCP 36 }
rlDhcpSrvProbeTimeout OBJECT-TYPE
SYNTAX Unsigned32 (300..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the peiod of time in milliseconds the DHCP probe will wait before
issuing a new trial or deciding that no other device on the network
has the IP address which DHCP considers allocating."
DEFVAL { 500 }
::= { rsDHCP 37 }
rlDhcpSrvProbeRetries OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates how many times DHCP will probe before deciding that no other
device on the network has the IP address which DHCP
considers allocating."
DEFVAL { 2 }
::= { rsDHCP 38 }
rlDhcpSrvDefaultNetworkPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Contains a default network pool name. Used in case of one network pool only."
::= { rsDHCP 39 }
-- IP Addresses Table
rlDhcpSrvIpAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDhcpSrvIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of IP Addresses allocated by DHCP Server by static
and dynamic allocations."
::= { rsDHCP 45}
rlDhcpSrvIpAddrEntry OBJECT-TYPE
SYNTAX RlDhcpSrvIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table.
Parameters of DHCP allocated IP Addresses table."
INDEX { rlDhcpSrvIpAddrIpAddr }
::= { rlDhcpSrvIpAddrTable 1 }
RlDhcpSrvIpAddrEntry ::= SEQUENCE {
rlDhcpSrvIpAddrIpAddr
IpAddress,
rlDhcpSrvIpAddrIpNetMask
IpAddress,
rlDhcpSrvIpAddrIdentifier
OCTET STRING,
rlDhcpSrvIpAddrIdentifierType
INTEGER,
rlDhcpSrvIpAddrClnHostName
SnmpAdminString,
rlDhcpSrvIpAddrMechanism
INTEGER,
rlDhcpSrvIpAddrAgeTime
Unsigned32,
rlDhcpSrvIpAddrLeaseTime
Unsigned32,
rlDhcpSrvIpAddrState
INTEGER,
rlDhcpSrvIpAddrPoolName
DisplayString,
rlDhcpSrvIpAddrConfParamsName
DisplayString,
rlDhcpSrvIpAddrRowStatus
RowStatus
}
rlDhcpSrvIpAddrIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address that was allocated by DHCP Server."
::= { rlDhcpSrvIpAddrEntry 1 }
rlDhcpSrvIpAddrIpNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask associated with the IP address of this entry.
The value of the mask is an IP address with all the network bits
set to 1 and all the hosts bits set to 0."
::= { rlDhcpSrvIpAddrEntry 2 }
rlDhcpSrvIpAddrIdentifier OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unique Identifier for client. Either physical address or DHCP Client Identifier."
::= { rlDhcpSrvIpAddrEntry 3 }
rlDhcpSrvIpAddrIdentifierType OBJECT-TYPE
SYNTAX INTEGER {
physAddr(1),
clientId(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Identifier Type. Either physical address or DHCP Client Identifier."
DEFVAL { clientId }
::= { rlDhcpSrvIpAddrEntry 4 }
rlDhcpSrvIpAddrClnHostName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Client Host Name. DHCP Server will use it to update DNS Server.
Must be unique per client."
::= { rlDhcpSrvIpAddrEntry 5 }
rlDhcpSrvIpAddrMechanism OBJECT-TYPE
SYNTAX INTEGER {
manual(1),
automatic(2),
dynamic(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Mechanism of allocation IP Address by DHCP Server.
The only value that can be set by user is manual."
DEFVAL { manual }
::= { rlDhcpSrvIpAddrEntry 6 }
rlDhcpSrvIpAddrAgeTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Age time of the IP Address."
DEFVAL { 0 }
::= { rlDhcpSrvIpAddrEntry 7 }
rlDhcpSrvIpAddrPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ip address pool name. A unique name for host pool static allocation,
or network pool name in case of dynamic allocation."
::= { rlDhcpSrvIpAddrEntry 8 }
rlDhcpSrvIpAddrConfParamsName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable points (serves as key) to appropriate set of parameters
in the DHCP Server configuration parameters table."
::= { rlDhcpSrvIpAddrEntry 9 }
rlDhcpSrvIpAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { rlDhcpSrvIpAddrEntry 10 }
rlDhcpSrvIpAddrLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lease time of the IP Address. Get a value of network pool lease time at allocation time."
DEFVAL { 86400 }
::= { rlDhcpSrvIpAddrEntry 11 }
rlDhcpSrvIpAddrState OBJECT-TYPE
SYNTAX INTEGER {
pre-allocated(1),
valid(2),
expired(3),
declined(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of allocation IP Address by DHCP Server."
DEFVAL { valid }
::= { rlDhcpSrvIpAddrEntry 12 }
-- Dynamic Table
rlDhcpSrvDynamicTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDhcpSrvDynamicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DHCP Dynamic Server's configuration Table"
::= { rsDHCP 46 }
rlDhcpSrvDynamicEntry OBJECT-TYPE
SYNTAX RlDhcpSrvDynamicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table. Parameters sent in
as a DHCP Reply to DHCP Request with specified indices"
INDEX { rlDhcpSrvDynamicPoolName }
::= { rlDhcpSrvDynamicTable 1 }
RlDhcpSrvDynamicEntry ::= SEQUENCE {
rlDhcpSrvDynamicPoolName
DisplayString,
rlDhcpSrvDynamicIpAddrFrom
IpAddress,
rlDhcpSrvDynamicIpAddrTo
IpAddress,
rlDhcpSrvDynamicIpNetMask
IpAddress,
rlDhcpSrvDynamicLeaseTime
Unsigned32,
rlDhcpSrvDynamicProbeEnable
TruthValue,
rlDhcpSrvDynamicTotalNumOfAddr
Unsigned32,
rlDhcpSrvDynamicFreeNumOfAddr
Unsigned32,
rlDhcpSrvDynamicConfParamsName
DisplayString,
rlDhcpSrvDynamicRowStatus
RowStatus,
rlDhcpSrvDynamicAvailableNumOfAddr
Unsigned32,
rlDhcpSrvDynamicNumOfPreallocatedAddr
Unsigned32,
rlDhcpSrvDynamicNumOfValidAddr
Unsigned32,
rlDhcpSrvDynamicNumOfExpiredAddr
Unsigned32,
rlDhcpSrvDynamicNumOfDeclinedAddr
Unsigned32
}
rlDhcpSrvDynamicPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of DHCP dynamic addresses pool."
::= { rlDhcpSrvDynamicEntry 1 }
rlDhcpSrvDynamicIpAddrFrom OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first IP address allocated in this row."
::= { rlDhcpSrvDynamicEntry 2 }
rlDhcpSrvDynamicIpAddrTo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The last IP address allocated in this row."
::= { rlDhcpSrvDynamicEntry 3 }
rlDhcpSrvDynamicIpNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subnet mask associated with the IP addresses of this entry.
The value of the mask is an IP address with all the network bits
set to 1 and all the hosts bits set to 0."
::= { rlDhcpSrvDynamicEntry 4 }
rlDhcpSrvDynamicLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum lease-time in seconds granted to a requesting DHCP client.
For automatic allocation use 0xFFFFFFFF.
To exclude addresses from allocation mechanism, set this value to 0."
DEFVAL { 86400 }
::= { rlDhcpSrvDynamicEntry 5 }
rlDhcpSrvDynamicProbeEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or Disable the use of the DHCP probe before allocating the address."
DEFVAL { true }
::= { rlDhcpSrvDynamicEntry 6 }
rlDhcpSrvDynamicTotalNumOfAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of addresses in space."
::= { rlDhcpSrvDynamicEntry 7 }
rlDhcpSrvDynamicFreeNumOfAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Free number of addresses in space."
::= { rlDhcpSrvDynamicEntry 8 }
rlDhcpSrvDynamicConfParamsName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable points (serves as key) to appropriate set of parameters
in the DHCP Server configuration parameters table."
::= { rlDhcpSrvDynamicEntry 9 }
rlDhcpSrvDynamicRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { rlDhcpSrvDynamicEntry 10 }
rlDhcpSrvDynamicAvailableNumOfAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of available addresses in space - all range minus excluded."
::= { rlDhcpSrvDynamicEntry 11 }
rlDhcpSrvDynamicNumOfPreallocatedAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of preallocated addresses in space."
::= { rlDhcpSrvDynamicEntry 12 }
rlDhcpSrvDynamicNumOfValidAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Valid (allocated) addresses in space."
::= { rlDhcpSrvDynamicEntry 13 }
rlDhcpSrvDynamicNumOfExpiredAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of expired addresses in space."
::= { rlDhcpSrvDynamicEntry 14 }
rlDhcpSrvDynamicNumOfDeclinedAddr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of declined addresses in space."
::= { rlDhcpSrvDynamicEntry 15 }
-- Configuration Parameters Table
rlDhcpSrvConfParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDhcpSrvConfParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DHCP Configuration Parameters Table"
::= { rsDHCP 47 }
rlDhcpSrvConfParamsEntry OBJECT-TYPE
SYNTAX RlDhcpSrvConfParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table.
Each entry corresponds to one specific parameters set."
INDEX { rlDhcpSrvConfParamsName }
::= { rlDhcpSrvConfParamsTable 1 }
RlDhcpSrvConfParamsEntry ::= SEQUENCE {
rlDhcpSrvConfParamsName
DisplayString,
rlDhcpSrvConfParamsNextServerIp
IpAddress,
rlDhcpSrvConfParamsNextServerName
DisplayString,
rlDhcpSrvConfParamsBootfileName
DisplayString,
rlDhcpSrvConfParamsRoutersList
DisplayString,
rlDhcpSrvConfParamsTimeSrvList
DisplayString,
rlDhcpSrvConfParamsDnsList
DisplayString,
rlDhcpSrvConfParamsDomainName
SnmpAdminString,
rlDhcpSrvConfParamsNetbiosNameList
DisplayString,
rlDhcpSrvConfParamsNetbiosNodeType
INTEGER,
rlDhcpSrvConfParamsCommunity
DisplayString,
rlDhcpSrvConfParamsNmsIp
IpAddress,
rlDhcpSrvConfParamsOptionsList
DisplayString,
rlDhcpSrvConfParamsRowStatus
RowStatus
}
rlDhcpSrvConfParamsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value is a unique index for the
entry in the rlDhcpSrvConfParamsTable."
::= { rlDhcpSrvConfParamsEntry 1 }
rlDhcpSrvConfParamsNextServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP of next server for client to use in configuration process."
-- DEFVAL { 0.0.0.0 }
::= { rlDhcpSrvConfParamsEntry 2 }
rlDhcpSrvConfParamsNextServerName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mame of next server for client to use in configuration process."
::= { rlDhcpSrvConfParamsEntry 3 }
rlDhcpSrvConfParamsBootfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Name of file for client to request from next server."
::= { rlDhcpSrvConfParamsEntry 4 }
rlDhcpSrvConfParamsRoutersList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of option code 3, which defines default routers list.
Each IP address is represented in dotted decimal notation format
with ';' between them."
::= { rlDhcpSrvConfParamsEntry 5 }
rlDhcpSrvConfParamsTimeSrvList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of option code 4, which defines time servers list.
Each IP address is represented in dotted decimal notation format
with ';' between them."
::= { rlDhcpSrvConfParamsEntry 6 }
rlDhcpSrvConfParamsDnsList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of option code 6, which defines the list of DNSs.
Each IP address is represented in dotted decimal notation format
with ';' between them."
::= { rlDhcpSrvConfParamsEntry 7 }
rlDhcpSrvConfParamsDomainName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value option code 15, which defines the domain name.."
::= { rlDhcpSrvConfParamsEntry 8 }
rlDhcpSrvConfParamsNetbiosNameList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value option code 44, which defines the list of NETBios
Name Servers. Each IP address is represented in dotted decimal
notation format with ';' between them."
::= { rlDhcpSrvConfParamsEntry 9 }
rlDhcpSrvConfParamsNetbiosNodeType OBJECT-TYPE
SYNTAX INTEGER {
b-node(1),
p-node(2),
m-node(4),
h-node(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value option code 46, which defines the NETBios node type.
The option will be added only if rlDhcpSrvConfParamsNetbiosNameList
is not empty."
DEFVAL { h-node }
::= { rlDhcpSrvConfParamsEntry 10 }
rlDhcpSrvConfParamsCommunity OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value of site-specific option 128, which defines Community.
The option will be added only if rlDhcpSrvConfParamsNmsIp is set."
DEFVAL { "public" }
::= { rlDhcpSrvConfParamsEntry 11 }
rlDhcpSrvConfParamsNmsIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value of site-specific option 129,
which defines IP of Network Manager."
-- DEFVAL { 0.0.0.0 }
::= { rlDhcpSrvConfParamsEntry 12 }
rlDhcpSrvConfParamsOptionsList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The sequence of option segments. Each option segment
is represented by a triplet <code/length/value>.
The code defines the code of each supported option.
The length defines the length of each supported option.
The value defines the value of the supported option.
If there is a number of elements in the value field,
they are divided by ','. Each element of type IP address
in value field is represented in dotted decimal notation
format."
::= { rlDhcpSrvConfParamsEntry 13 }
rlDhcpSrvConfParamsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { rlDhcpSrvConfParamsEntry 14 }
rlDhcpSrvNumOfNetworkPools OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of network pools (not excluded)."
::= { rsDHCP 48 }
rlDhcpSrvNumOfExcludedPools OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of excluded pools."
::= { rsDHCP 49 }
rlDhcpSrvNumOfHostPools OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of static entries stored in database."
::= { rsDHCP 50 }
rlDhcpSrvNumOfDynamicEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of dynamic and automatic (not static) entries stored in database."
::= { rsDHCP 51 }
rlDhcpSrvNumOfUsedEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable shows number of entries (any type) stored in database."
::= { rsDHCP 52 }
END