diff options
Diffstat (limited to 'etc/dhcp/network.conf')
-rw-r--r-- | etc/dhcp/network.conf | 26 |
1 files changed, 26 insertions, 0 deletions
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"; +} |