wok view busybox/stuff/udhcpd.conf @ rev 15390

Up slitaz-boot-scripts (5.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 30 18:29:11 2013 +0100 (2013-10-30)
parents
children f48f653c6d0c
line source
1 # /etc/udhcpd.conf: SliTaz DHCP server configuration.
2 #
4 # The start and end of the IP lease block
5 start 192.168.0.20 #default: 192.168.0.20
6 end 192.168.0.254 #default: 192.168.0.254
8 # The interface that udhcpd will use
9 interface eth0 #default: eth0
11 # The maximum number of leases (includes addressesd reserved
12 # by OFFER's, DECLINE's, and ARP conficts
13 #max_leases 254 #default: 254
15 # The amount of time that an IP will be reserved (leased) for if a
16 # DHCP decline message is received (seconds).
17 #decline_time 3600 #default: 3600 (1 hour)
19 # The amount of time that an IP will be reserved (leased) for if an
20 # ARP conflct occurs. (seconds
21 #conflict_time 3600 #default: 3600 (1 hour)
23 # How long an offered address is reserved (leased) in seconds
24 #offer_time 60 #default: 60 (1 minute)
26 # If a lease to be given is below this value, the full lease time is
27 # instead used (seconds).
28 #min_lease 60 #defult: 60
30 # The location of the leases file
31 lease_file /var/lib/udhcpd.leases #default: /var/lib/misc/udhcpd.leases
33 # The location of the pid file
34 pidfile /var/run/udhcpd.pid #default: /var/run/udhcpd.pid
36 # The remainer of options are DHCP options and can be specifed with the
37 # keyword 'opt' or 'option'. If an option can take multiple items, such
38 # as the dns option, they can be listed on the same line, or multiple
39 # lines. The only option with a default is 'lease'.
41 #Examples
42 #opt dns 192.168.10.2 192.168.10.10
43 option subnet 255.255.255.0
44 #option dns 129.219.13.81 # appened to above DNS servers for a total of 3
45 option lease 864000 # 10 days of seconds
47 # Currently supported options
48 #opt subnet
49 #opt timezone
50 #opt router
51 #opt timesrv
52 #opt namesrv
53 #opt dns
54 #opt logsrv
55 #opt cookiesrv
56 #opt lprsrv
57 #opt bootsize
58 #opt domain
59 #opt swapsrv
60 #opt rootpath
61 #opt ipttl
62 #opt mtu
63 #opt broadcast
64 #opt wins
65 #opt lease
66 #opt ntpsrv
67 #opt tftp
68 #opt bootfile