-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdhcp
41 lines (36 loc) · 942 Bytes
/
dhcp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
config dnsmasq
option domainneeded '1'
option boguspriv '1'
option filterwin2k '0'
option localise_queries '1'
option rebind_protection '1'
option rebind_localhost '1'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option nonegcache '0'
option authoritative '1'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.auto'
option localservice '1'
config dhcp 'lan'
option start '100'
option leasetime '12h'
option interface 'xwlan'
option limit '150'
option dhcpv6 'server'
option ra 'server'
option ra_management '1'
config dhcp 'wan'
option ignore '1'
option interface 'wan'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
config dhcp 'wlan'
option start '100'
option leasetime '12h'
option interface 'wlan'
option limit '50'