summaryrefslogtreecommitdiff
path: root/dhcpd.conf.xenuxlocal
diff options
context:
space:
mode:
authorJuri Jensen <juri@xenux.dk>2001-09-13 14:46:48 +0000
committerJuri Jensen <juri@xenux.dk>2001-09-13 14:46:48 +0000
commit4caddfd2421685e3dc0c4a07ee5fbc8102f22a8b (patch)
treeeca07945ef813c7f1cabb51ad57ae6ead50c360f /dhcpd.conf.xenuxlocal
parent7fb249022f247ae67b9f5260e8f98888b1999d32 (diff)
* Added dhcp.conf.xenuxlocal
* Fixed some typos
Diffstat (limited to 'dhcpd.conf.xenuxlocal')
-rw-r--r--dhcpd.conf.xenuxlocal28
1 files changed, 28 insertions, 0 deletions
diff --git a/dhcpd.conf.xenuxlocal b/dhcpd.conf.xenuxlocal
new file mode 100644
index 0000000..300d94c
--- /dev/null
+++ b/dhcpd.conf.xenuxlocal
@@ -0,0 +1,28 @@
+# dhcpd.conf
+#
+# DHCP configuration file for xenux.local
+#
+
+default-lease-time 1200;
+max-lease-time 7200;
+
+option subnet-mask 255.255.255.0;
+option routers 192.168.200.1;
+option domain-name-servers 192.168.200.20, 212.54.64.170, 212.54.64.171;
+option domain-name "xenux.local";
+option netbios-name-servers 192.168.200.1;
+
+# According to our policy, the dynamic address space starts
+# at .60 and ends at .229 giving 170 client addresses.
+# (See "System Description --> Network Model")
+subnet 192.168.200.0 netmask 255.255.255.0 {
+ range 192.168.200.60 192.168.200.229;
+}
+
+# According to our policy, the printers address space starts
+# at .40 and ends at .59 giving 20 printer addresses.
+# (See "System Description --> Network Model")
+host brother1270n {
+ hardware ethernet 00:80:77:31:a2:6a;
+ fixed-address 192.168.200.40;
+}