1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ian072@sundown:~$ cat /etc/dhcp/dhcpd.conf 

ddns-update-style none;
log-facility local7;

subnet  10.0.0.1 netmask 255.255.255.0 {
 
        option routers                  10.0.0.1;
        option subnet-mask              255.255.255.0;
        option broadcast-address        10.0.0.254;
        option domain-name-servers      192.168.1.2;
        option ntp-servers              192.168.1.2;
        option netbios-name-servers     10.0.0.1;
        option netbios-node-type 2;
 
        default-lease-time 86400;
        max-lease-time 86400;
 
        host bla3 {
                hardware ethernet p5p1;
                fixed-address 10.0.0.1;
        }
}