blob: b3b101c4766a709aa9b9ca32f2cbe6daf8929392 (
plain)
1 diff -ur dhcp-4.0.0.orig/client/dhclient.conf.example dhcp-4.0.0/client/dhclient.conf.example
2 --- dhcp-4.0.0.orig/client/dhclient.conf.example 1997-06-03 00:50:44.000000000 +0200
3 +++ dhcp-4.0.0/client/dhclient.conf.example 2008-02-23 23:49:14.538607761 +0100
4 @@ -1,3 +1,7 @@
5 +#
6 +# /etc/dhclient.conf: DHCP client configuration file, see dhclient.conf(5)
7 +#
8 +
9 send host-name = pick-first-value(gethostname(), "ISC-dhclient");
10 send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
11 send dhcp-lease-time 3600;
12 @@ -11,7 +15,7 @@
13 reboot 10;
14 select-timeout 5;
15 initial-interval 2;
16 -script "/etc/dhclient-script";
17 +script "/sbin/dhclient-script";
18 media "-link0 -link1 -link2", "link0 link1";
19 reject 192.33.137.209;
20
21 @@ -34,3 +38,5 @@
22 rebind 2 2000/1/12 00:00:01;
23 expire 2 2000/1/12 00:00:01;
24 }
25 +
26 +# End of file
27 diff -ur dhcp-4.0.0.orig/server/dhcpd.conf.example dhcp-4.0.0/server/dhcpd.conf.example
28 --- dhcp-4.0.0.orig/server/dhcpd.conf.example 2002-08-13 02:55:17.000000000 +0200
29 +++ dhcp-4.0.0/server/dhcpd.conf.example 2008-02-23 23:50:52.132354533 +0100
30 @@ -1,11 +1,11 @@
31 -# dhcpd.conf
32 #
33 -# Sample configuration file for ISC dhcpd
34 +# dhcpd.conf: Configuration file for ISC dhcpd
35 #
36
37 -# option definitions common to all supported networks...
38 +# Option definitions common to all supported networks.
39 option domain-name "example.org";
40 option domain-name-servers ns1.example.org, ns2.example.org;
41 +ddns-update-style ad-hoc;
42
43 default-lease-time 600;
44 max-lease-time 7200;
45 @@ -102,3 +102,5 @@
46 range 10.0.29.10 10.0.29.230;
47 }
48 }
49 +
50 +# End of file
|