diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-04 21:17:23 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-04 21:17:23 +0200 |
commit | 14b162f9ab2c34cf5ffc9f5c8e9f90d58e8445eb (patch) | |
tree | dc42e844bb925123a91a14d0e5785acf321eebd6 | |
parent | 9180c6045e8b2465b3e18a22eb08ee8438ae8544 (diff) | |
download | busybox-w32-14b162f9ab2c34cf5ffc9f5c8e9f90d58e8445eb.tar.gz busybox-w32-14b162f9ab2c34cf5ffc9f5c8e9f90d58e8445eb.tar.bz2 busybox-w32-14b162f9ab2c34cf5ffc9f5c8e9f90d58e8445eb.zip |
tweak examples/udhcp/udhcpd.conf
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | examples/udhcp/udhcpd.conf | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/udhcp/udhcpd.conf b/examples/udhcp/udhcpd.conf index 43b49df89..cd2957ccc 100644 --- a/examples/udhcp/udhcpd.conf +++ b/examples/udhcp/udhcpd.conf | |||
@@ -14,11 +14,6 @@ interface eth0 | |||
14 | # smaller than lease block. | 14 | # smaller than lease block. |
15 | #max_leases 254 | 15 | #max_leases 254 |
16 | 16 | ||
17 | # The time period at which udhcpd will write out a dhcpd.leases | ||
18 | # file. If this is 0, udhcpd will never automatically write a | ||
19 | # lease file. Specified in seconds. | ||
20 | #auto_time 7200 | ||
21 | |||
22 | # The amount of time that an IP will be reserved (leased to nobody) | 17 | # The amount of time that an IP will be reserved (leased to nobody) |
23 | # if a DHCP decline message is received (seconds) | 18 | # if a DHCP decline message is received (seconds) |
24 | #decline_time 3600 | 19 | #decline_time 3600 |
@@ -34,11 +29,16 @@ interface eth0 | |||
34 | # to this value (seconds) | 29 | # to this value (seconds) |
35 | #min_lease 60 | 30 | #min_lease 60 |
36 | 31 | ||
32 | # The location of the pid file | ||
33 | #pidfile /var/run/udhcpd.pid | ||
34 | |||
37 | # The location of the leases file | 35 | # The location of the leases file |
38 | #lease_file /var/lib/misc/udhcpd.leases | 36 | #lease_file /var/lib/misc/udhcpd.leases |
39 | 37 | ||
40 | # The location of the pid file | 38 | # The time period at which udhcpd will write out leases file. |
41 | #pidfile /var/run/udhcpd.pid | 39 | # If this is 0, udhcpd will never automatically write leases file. |
40 | # Specified in seconds. | ||
41 | #auto_time 7200 | ||
42 | 42 | ||
43 | # Every time udhcpd writes a leases file, the below script will be called | 43 | # Every time udhcpd writes a leases file, the below script will be called |
44 | #notify_file # default: no script | 44 | #notify_file # default: no script |