]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Sample dhcp client configuration file
authorTed Lemon <source@isc.org>
Sat, 22 Feb 1997 14:28:03 +0000 (14:28 +0000)
committerTed Lemon <source@isc.org>
Sat, 22 Feb 1997 14:28:03 +0000 (14:28 +0000)
client/dhclient.conf [new file with mode: 0644]

diff --git a/client/dhclient.conf b/client/dhclient.conf
new file mode 100644 (file)
index 0000000..3539a48
--- /dev/null
@@ -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;
+}