From 075ccbf93d9dcf82e39cfafa9f33abdd43de723d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 2 Apr 2021 16:29:50 +0100 Subject: Shared files for dhcpd --- etc/dhcp/network.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 etc/dhcp/network.conf (limited to 'etc/dhcp/network.conf') diff --git a/etc/dhcp/network.conf b/etc/dhcp/network.conf new file mode 100644 index 0000000..40e23a3 --- /dev/null +++ b/etc/dhcp/network.conf @@ -0,0 +1,26 @@ +host ps3 { + hardware ethernet 00:1d:0d:f8:a5:80; + option domain-name-servers 8.8.8.8, 8.8.4.4; +} + +subnet 10.10.0.0 netmask 255.255.0.0 { + pool { + failover peer "randomlan"; + range 10.10.1.1 10.10.1.254; + } + + key updatekey { + algorithm hmac-md5; + secret "df61eb0aa23833c56751a6c8f579f695"; + } + + zone 10.10.in-addr.arpa { + primary dns1.random.lan; + key updatekey; + } + zone random.lan { + primary dns1.random.lan; + key updatekey; + } + option local-proxy-config "http://wpad.random.lan/wpad.dat"; +} -- cgit v1.2.3