summaryrefslogtreecommitdiffstats
path: root/root/etc/dnsmasq.conf
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-07-07 05:11:47 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-07-07 05:11:47 +0000
commitc6655b4963999b2278a285462274e50a90e7cf01 (patch)
tree1b2ab5bae46d38e8547264edb4134c42252a70c1 /root/etc/dnsmasq.conf
parentc16f39693eed57459fe5dab8d8544b4ac0dd1704 (diff)
moving to dnsmasq as dhcp server
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@75 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'root/etc/dnsmasq.conf')
-rw-r--r--root/etc/dnsmasq.conf22
1 files changed, 22 insertions, 0 deletions
diff --git a/root/etc/dnsmasq.conf b/root/etc/dnsmasq.conf
new file mode 100644
index 000000000..c62f7f991
--- /dev/null
+++ b/root/etc/dnsmasq.conf
@@ -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