# dhcpd.conf # # Configuration file for ISC dhcpd (see 'man dhcpd.conf') # subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.2 192.168.1.254; ddns-update-style ad-hoc; default-lease-time 600; max-lease-time 7200; option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.1; option domain-name-servers 192.168.1.1; option domain-name "gda.pl"; } host client { hardware ethernet 00:30:4F:19:33:62; fixed-address 192.168.1.2; }