summaryrefslogtreecommitdiff
path: root/config/obr/dhcpd.conf
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-18 20:37:35 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-18 20:37:35 +0200
commit110473fbd088bd1e9a07391495fd2104ab15a74e (patch)
treea2042dd2a4f69799d048a3fb2abfbc8cbc16e0b7 /config/obr/dhcpd.conf
parent56881320ef9593db3618eaf1d390ff0f96d12d91 (diff)
downloadOpenBSD-firewall-110473fbd088bd1e9a07391495fd2104ab15a74e.tar.gz
OpenBSD-firewall-110473fbd088bd1e9a07391495fd2104ab15a74e.tar.bz2
synchronized config (DNS, DHCP, network)
Diffstat (limited to 'config/obr/dhcpd.conf')
-rw-r--r--config/obr/dhcpd.conf85
1 files changed, 85 insertions, 0 deletions
diff --git a/config/obr/dhcpd.conf b/config/obr/dhcpd.conf
new file mode 100644
index 0000000..54d655d
--- /dev/null
+++ b/config/obr/dhcpd.conf
@@ -0,0 +1,85 @@
+shared-network LAN {
+ default-lease-time 3600;
+ max-lease-time 3600;
+ option domain-name "lan";
+ #option domain-name-servers 194.246.118.118, 212.25.28.55;
+ option domain-name-servers 192.168.1.1;
+ option routers 192.168.1.1;
+ option subnet-mask 255.255.255.0;
+ allow booting;
+ allow bootp;
+
+ subnet 192.168.1.0 netmask 255.255.255.0 {
+ option routers 192.168.1.1;
+ range 192.168.1.128 192.168.1.249;
+ }
+
+ group {
+ use-host-decl-names on;
+
+ host europa1 {
+ hardware ethernet 00:00:E2:3C:A2:3B;
+ fixed-address 192.168.1.2;
+ }
+
+ host europa4 {
+ hardware ethernet 00:00:1C:B5:F3:43;
+ fixed-address 192.168.1.5;
+ }
+
+ host europa5 {
+ hardware ethernet 00:01:80:5F:5D:EB;
+ fixed-address 192.168.1.6;
+ }
+
+ host europa6 {
+ hardware ethernet 08:00:20:82:F1:1A;
+ fixed-address 192.168.1.7;
+ }
+
+ host eeepc {
+ hardware ethernet 00:1f:c6:5c:64:43;
+ fixed-address 192.168.1.8;
+ }
+
+ host eurodata {
+ hardware ethernet 00:08:9B:8D:20:34;
+ fixed-address 192.168.1.9;
+ }
+
+ host eeepc-wifi {
+ hardware ethernet 00:15:AF:A0:96:3;
+ fixed-address 192.168.1.10;
+ }
+
+ host euroserver {
+ hardware ethernet 00:15:17:25:76:5C;
+ fixed-address 192.168.1.12;
+ }
+
+ host europa10 {
+ hardware ethernet 00:03:BA:00:D5:9B;
+ fixed-address 192.168.1.13;
+ }
+
+ host eurodock {
+ hardware ethernet 00:13:20:62:0B:36;
+ fixed-address 192.168.1.14;
+ }
+
+ host euroweb {
+ hardware ethernet b8:27:eb:2a:d9:c7;
+ fixed-address 192.168.1.15;
+ }
+
+ host eurobeam {
+ hardware ethernet b8:27:eb:76:8e:67;
+ fixed-address 192.168.1.16;
+ }
+
+ host eurohp1 {
+ hardware ethernet 00:0f:20:d0:96:f1;
+ fixed-address 192.168.1.17;
+ }
+ }
+}