blob: 40e23a3a71708508001686b515eee7c17c792937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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";
}
|