orphan
[debian/elilo] / examples / netboot / dhcpd.conf
1 subnet 192.168.2.0 netmask 255.255.255.0 {
2
3         option domain-name "mydomain.com";
4         option subnet-mask 255.255.255.0;
5         option routers     15.4.88.1;
6         
7         # here we use a fixed address
8         host test_machine {
9                 hardware ethernet 00:D0:B7:C7:FB:F8;
10                 fixed-address 192.168.2.10;
11                 filename "/tftpboot/elilo.efi";
12                 option host-name "test_machine";
13         }
14 }