diff options
author | Karel Kočí <cynerd@email.cz> | 2017-09-20 22:05:39 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-09-20 22:14:29 +0200 |
commit | 0a4fccef3c0d934cc820e2720c46297414f057f8 (patch) | |
tree | 99d0d0ebf99d1f844c761bafe5fcf996fe77e1d0 /bridge/dhcpd.conf | |
download | multiconfig-f3457f88ee0fd145f87b245d96e17d31050758aa.tar.gz multiconfig-f3457f88ee0fd145f87b245d96e17d31050758aa.tar.bz2 multiconfig-f3457f88ee0fd145f87b245d96e17d31050758aa.zip |
Initial commitv0.1
Diffstat (limited to 'bridge/dhcpd.conf')
-rw-r--r-- | bridge/dhcpd.conf | 13 |
1 files changed, 13 insertions, 0 deletions
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; |