Which of the following statements in the ISC DHCPD configuration is used to specify whether or not an address pool can be used by nodes which have a corresponding host section in the configuration?
Which of the following statements in the ISC DHCPD configuration is used to specify whether or not an address pool can be used by nodes which have a corresponding host section in the configuration?
The correct statement in the ISC DHCPD configuration to specify whether or not an address pool can be used by nodes which have a corresponding host section in the configuration is 'unknown-clients'. This directive allows the administrator to control if the pool should only be used by clients that are not explicitly known in the configuration.
E is correct! subnet 10.0.0.0 netmask 255.255.255.0 { option routers 10.0.0.254; # Unknown clients get this pool. pool { option domain-name-servers bogus.example.com; max-lease-time 300; range 10.0.0.200 10.0.0.253; allow unknown-clients; } # Known clients get this pool. pool { option domain-name-servers ns1.example.com, ns2.example.com; max-lease-time 28800; range 10.0.0.5 10.0.0.199; deny unknown-clients; } } Ref.: https://linux.die.net/man/5/dhcpd.conf