mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 14:47:46 +01:00
moving to dnsmasq as dhcp server
SVN-Revision: 75
This commit is contained in:
parent
2fc1809744
commit
b59277aa01
22
root/etc/dnsmasq.conf
Normal file
22
root/etc/dnsmasq.conf
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# filter what we send upstream
|
||||||
|
domain-needed
|
||||||
|
bogus-priv
|
||||||
|
filterwin2k
|
||||||
|
|
||||||
|
# allow /etc/hosts and dhcp lookups via *.lan
|
||||||
|
local=/lan/
|
||||||
|
domain=lan
|
||||||
|
|
||||||
|
# no dns queries from the wan
|
||||||
|
except-interface=vlan1
|
||||||
|
|
||||||
|
# enable dhcp (start,end,netmask,leasetime)
|
||||||
|
dhcp-range=192.168.1.100,192.168.1.250,255.255.255.0,12h
|
||||||
|
dhcp-leasefile=/tmp/dhcp.leases
|
||||||
|
|
||||||
|
# allow a /etc/ethers for static hosts
|
||||||
|
read-ethers
|
||||||
|
|
||||||
|
# other useful options:
|
||||||
|
# default route(s): dhcp-option=3,192.168.1.1,192.168.1.2
|
||||||
|
# dns server(s): dhcp-option=6,192.168.1.1,192.168.1.2
|
@ -1,5 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
/usr/sbin/telnetd -l /bin/login
|
/usr/sbin/telnetd -l /bin/login
|
||||||
/usr/sbin/httpd -p 80 -h /www -r WRT54G Router
|
/usr/sbin/httpd -p 80 -h /www -r WRT54G Router
|
||||||
/usr/sbin/udhcpd /etc/udhcpd.conf
|
/usr/sbin/dnsmasq
|
||||||
#dnsmasq started from /etc/inittab
|
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
::sysinit:/etc/init.d/rcS
|
::sysinit:/etc/init.d/rcS
|
||||||
::shutdown:/sbin/halt
|
::shutdown:/sbin/halt
|
||||||
::respawn:/usr/sbin/dnsmasq -d -l /tmp/udhcpd.leases -s lan
|
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
max_leases 200
|
|
||||||
start 192.168.1.20
|
|
||||||
end 192.168.1.250
|
|
||||||
interface br0
|
|
||||||
lease_file /tmp/udhcpd.leases
|
|
||||||
domain lan
|
|
||||||
pidfile /tmp/udhcpd.pid
|
|
||||||
option dns 192.168.1.1
|
|
||||||
option subnet 255.255.255.0
|
|
||||||
option router 192.168.1.1
|
|
||||||
lease 7200
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user