Examine the contents of the dhcp configuration file:
# cat /etc/dhcp/dhcpd.conf
subnet 192.168.100.0 netmask 255.255.255.0 { range 192.168.100.100 192.168.100.200;
}
host hostl 00 {
hardware ethernet 00:0c:29:B9:07:41; fixed-address 192.168.100.100;
}
Which statement is true about this DHCPD configuration?
A.
An attempt to startDHCPDfails due to the conflicting lease declaration for address192.168.100.100.
B.
A lease request fromhostl OOalways fails.
C.
A lease request fromhostl OOfails only if address192.168.100.100is currently in use.
D.
A lease request fromhostl OOsucceeds if the host assigned to address192.168.100.100is currently offline. O E A lease request fromhostl OOfails only if a previous lease on address192.168.100.100has expired.
I like “C” for this one, but I can’t defend my answer.
I think C because the DHCP only give lease for host00 due to its MAC address. DHCP server will note give this address as question in D E