» Linux » Examen sur Linux » Examen 202 : Networking Administration » Section 5 » Question 23/27
23.You want to assign IP addresses from a Class C network to your numerous bootp clients. What would you add to the dhcpd.conf?

bootp-dynamic 192.168.0.0/24;
range dynamic bootp 192.168.0.2 192.168.0.255;
range dynamic-bootp 192.168.0.2 192.168.0.255;
assign range 192.168.0.0/24 bootp;
bootp { range: 192.168.0.0/24; }

Explanation: For any subnet on which addresses will be assigned dynamically, there must be at least one range statement. The range statement gives the lowest and highest IP addresses in a range. All IP addresses in the range should be in the subnet in which the range statement is declared. The dynamic-bootp flag may be specified if addresses in the specified range may be dynamically assigned to BOOTP clients as well as DHCP clients.

Reference: http://www.fifi.org/cgi-bin/man2html/usr/share/man/man5/dhcpd.conf.5.gz

Incorrect Answers
A: The syntax of this answer is incorrect.
B: There should be a hyphen between dynamic and bootp (dynamic-bootp).
D: The syntax of this answer is incorrect.

« Question 22 Question 24 »