diff options
author | Juri Jensen <juri@xenux.dk> | 2002-02-05 15:19:41 +0000 |
---|---|---|
committer | Juri Jensen <juri@xenux.dk> | 2002-02-05 15:19:41 +0000 |
commit | 4750e669137a72c1f9f1837f1a355d847a926a79 (patch) | |
tree | 902188debfcdae898258ffefc2600ae881b4ad89 | |
parent | 2ca296b69f8c10f6e1df69137986f92cc21df8a0 (diff) |
dhcp: Added dhcpd.conf for the sagahus site.
-rw-r--r-- | dhcpd.conf.sagahus | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dhcpd.conf.sagahus b/dhcpd.conf.sagahus new file mode 100644 index 0000000..42c4f1f --- /dev/null +++ b/dhcpd.conf.sagahus @@ -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.4.1; +option domain-name-servers 192.168.4.1, 212.242.41.248, 212.242.41.249; +option domain-name "sagahus.local"; +option netbios-name-servers 192.168.4.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.4.0 netmask 255.255.255.0 { + range 192.168.4.60 192.168.4.229; +} |