# dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supported networks... option domain-name "halfline.desktop"; option domain-name-servers ds.halfline.desktop; option routers 172.16.172.1; default-lease-time 600; max-lease-time 7200; # Use this to enble / disable dynamic dns updates globally. #ddns-update-style none; # If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative; # Use this to send dhcp log messages to a different log file (you also # have to hack syslog.conf to complete the redirection). log-facility local7; # This is a very basic subnet declaration. subnet 172.16.172.0 netmask 255.255.255.0 { range 172.16.172.17 172.16.172.100; } host f21-ipa-client { hardware ethernet 52:54:00:c8:f2:bf; fixed-address 172.16.172.172; server-name "f21-ipa-client.halfline.desktop"; } host rhel7-2 { hardware ethernet 52:54:00:da:49:16; fixed-address 172.16.172.171; server-name "rhel7-2.halfline.desktop"; }