summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuri Jensen <juri@xenux.dk>2002-01-09 22:57:28 +0000
committerJuri Jensen <juri@xenux.dk>2002-01-09 22:57:28 +0000
commitab9a52b41d24f8d00326f56d7e789608cee9e580 (patch)
treee545c25d0aa71a5dd60ad69d847ab928d76cbc02
parent82858c268f194ce5e0ec0bbbf62114d0110a285b (diff)
DHCP: Added a dhcpd.conf for the Råtstof site.
-rw-r--r--dhcpd.conf.raatstof20
1 files changed, 20 insertions, 0 deletions
diff --git a/dhcpd.conf.raatstof b/dhcpd.conf.raatstof
new file mode 100644
index 0000000..15109fd
--- /dev/null
+++ b/dhcpd.conf.raatstof
@@ -0,0 +1,20 @@
+# dhcpd.conf
+#
+# DHCP configuration file for raatstof.local
+#
+
+default-lease-time 1200;
+max-lease-time 7200;
+
+option subnet-mask 255.255.255.0;
+option routers 192.168.3.1;
+option domain-name-servers 192.168.3.1, 212.54.64.170, 212.54.64.171;
+option domain-name "raatstof.local";
+option netbios-name-servers 192.168.3.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.3.0 netmask 255.255.255.0 {
+ range 192.168.3.60 192.168.3.229;
+}