File: dhcpd.conf

package info (click to toggle)
elilo 3.2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,356 kB
  • ctags: 2,507
  • sloc: ansic: 9,556; sh: 639; asm: 532; makefile: 196
file content (14 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
subnet 192.168.2.0 netmask 255.255.255.0 {

	option domain-name "mydomain.com";
	option subnet-mask 255.255.255.0;
	option routers     15.4.88.1;
	
	# here we use a fixed address
	host test_machine {
		hardware ethernet 00:D0:B7:C7:FB:F8;
		fixed-address 192.168.2.10;
		filename "/tftpboot/elilo.efi";
                option host-name "test_machine";
	}
}