Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ cat /etc/dhcp/dhcpd.conf
- default-lease-time 3600;
- max-lease-time 7200;
- subnet 192.168.1.0 netmask 255.255.255.0 {
- option subnet-mask 255.255.255.0;
- option domain-name-servers 192.168.1.1, 8.8.8.8, 93.89.159.2, 82.208.56.105;
- option ntp-servers 192.168.1.1;
- option domain-name "lan";
- option broadcast-address 192.168.1.255;
- option routers 192.168.1.1;
- # option netbios-name-servers 192.168.1.25;
- range 192.168.1.10 192.168.1.100;
- ddns-update-style none;
- authoritative;
- host martin {
- hardware ethernet 74:2f:68:9f:e3:8b;
- fixed-address 192.168.1.11;
- }
- host htpc {
- hardware ethernet 10:00:00:20:98:1A;
- fixed-address 192.168.1.14;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment