move target/default/target_skeleton into package/base-files, put all the default...
[openwrt/svn-archive/archive.git] / openwrt / package / base-files / default / etc / dnsmasq.conf
1 # filter what we send upstream
2 domain-needed
3 bogus-priv
4 filterwin2k
5 localise-queries
6
7 # allow /etc/hosts and dhcp lookups via *.lan
8 local=/lan/
9 domain=lan
10
11 # no dhcp / dns queries from the wan
12 except-interface=vlan1
13
14 # enable dhcp (start,end,netmask,leasetime)
15 dhcp-authoritative
16 #dhcp-range=192.168.1.100,192.168.1.250,255.255.255.0,12h
17 #dhcp-leasefile=/tmp/dhcp.leases
18
19 # use /etc/ethers for static hosts; same format as --dhcp-host
20 # <hwaddr> [<hostname>] <ipaddr>
21 read-ethers
22
23 # other useful options:
24 # default route(s): dhcp-option=3,192.168.1.1,192.168.1.2
25 # dns server(s): dhcp-option=6,192.168.1.1,192.168.1.2