1 send host-name = pick-first-value(gethostname(), "ISC-dhclient"); 2 send dhcp-client-identifier 1:0:a0:24:ab:fb:9c; 3 send dhcp-lease-time 3600; 4 supersede domain-search "example.com", "isc.org"; 5 prepend domain-name-servers 127.0.0.1; 6 request subnet-mask, broadcast-address, time-offset, routers, 7 domain-name, domain-name-servers, host-name; 8 require subnet-mask, domain-name-servers; 9 timeout 60; 10 retry 60; 11 reboot 10; 12 select-timeout 5; 13 initial-interval 2; 14 script "/etc/dhclient-script"; 15 media "-link0 -link1 -link2", "link0 link1"; 16 reject 192.33.137.209; 17 18 alias { 19 interface "ep0"; 20 fixed-address 192.5.5.213; 21 option subnet-mask 255.255.255.255; 22 } 23 24 lease { 25 interface "ep0"; 26 fixed-address 192.33.137.200; 27 medium "link0 link1"; 28 option host-name "andare.example.com"; 29 option subnet-mask 255.255.255.0; 30 option broadcast-address 192.33.137.255; 31 option routers 192.33.137.250; 32 option domain-name-servers 127.0.0.1; 33 renew 2 2000/1/12 00:00:01; 34 rebind 2 2000/1/12 00:00:01; 35 expire 2 2000/1/12 00:00:01; 36 } 37