From 0a4fccef3c0d934cc820e2720c46297414f057f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 20 Sep 2017 22:05:39 +0200 Subject: Initial commit --- bridge/dhcpd.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bridge/dhcpd.conf (limited to 'bridge/dhcpd.conf') diff --git a/bridge/dhcpd.conf b/bridge/dhcpd.conf new file mode 100644 index 0000000..7aa8ab2 --- /dev/null +++ b/bridge/dhcpd.conf @@ -0,0 +1,13 @@ +authoritative; + +default-lease-time 600; +max-lease-time 7200; + +subnet 192.168.30.0 netmask 255.255.255.0 { + range 192.168.30.10 192.168.30.250; + option routers 192.168.30.1; + option subnet-mask 255.255.255.0; + option broadcast-address 192.168.30.255; +} + +option domain-name-servers 217.31.204.130, 193.29.206.206; -- cgit v1.2.3