From dad47cc493bf3a7eb0e8d5042e8df458e816c0f1 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Sat, 22 Feb 1997 14:28:03 +0000 Subject: [PATCH] Sample dhcp client configuration file --- client/dhclient.conf | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 client/dhclient.conf diff --git a/client/dhclient.conf b/client/dhclient.conf new file mode 100644 index 00000000..3539a488 --- /dev/null +++ b/client/dhclient.conf @@ -0,0 +1,31 @@ +send host-name "snark.fugue.com"; +send dhcp-client-identifier "snark"; +request subnet-mask, broadcast-address, time-offset, routers, + domain-name, domain-name-servers, host-name; +require subnet-mask, routers, domain-name-servers; +timeout 30; +retry 60; +select-timeout 5; +script "/etc/dhclient-script"; +media "-link0 -link1 -link2", "link0 link1"; + +#alias { +# interface "ep0"; +# fixed-address 192.5.5.213; +# option subnet-mask 255.255.255.255; +#} + +lease { + interface "ep0"; + fixed-address 10.9.8.7; + medium "link0 link1"; + option host-name "snark.nowhere.com"; + option subnet-mask 255.255.255.0; + option broadcast-address 10.9.8.255; + option routers 10.9.8.1; + option domain-name "nowhere.com"; + option domain-name-servers 127.0.0.1, 10.9.8.7; + renew 2 2000/1/12 00:00:01; + rebind 2 2000/1/12 00:00:01; + expire 2 2000/1/12 00:00:01; +}