1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
:~$ cat /etc/dhcp3/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.255;
        option domain-name-servers      192.168.1.2;
        option ntp-servers              10.152.187.1;
        option netbios-name-servers     10.152.187.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;
        }
}

ian072@sundown:~$ ip route
default via 192.168.1.1 dev p3p1 
10.0.0.0/24 dev p5p1  proto kernel  scope link  src 10.0.0.1 
169.254.0.0/16 dev p3p1  scope link  metric 1000 
192.168.1.0/24 dev p3p1  proto kernel  scope link  src 192.168.1.2