28 lines
857 B
Plaintext
28 lines
857 B
Plaintext
ddns-update-style none;
|
|
|
|
use-host-decl-names true;
|
|
|
|
subnet 192.168.50.0 netmask 255.255.255.0 {
|
|
option subnet-mask 255.255.255.0;
|
|
option routers 192.168.50.1;
|
|
next-server 192.168.50.1;
|
|
server-identifier 192.168.50.1;
|
|
option domain-name-servers 192.168.50.1;
|
|
option domain-search "example.com";
|
|
option domain-name "other.com";
|
|
option root-path "nfs:192.168.50.1:/nfs/client";
|
|
range 192.168.50.10 192.168.50.100;
|
|
}
|
|
|
|
subnet 192.168.51.0 netmask 255.255.255.0 {
|
|
option subnet-mask 255.255.255.0;
|
|
option routers 192.168.51.1;
|
|
next-server 192.168.51.1;
|
|
server-identifier 192.168.51.1;
|
|
option domain-name-servers 192.168.51.1;
|
|
option domain-search "example.com";
|
|
option domain-name "other.com";
|
|
option root-path "nfs:192.168.51.1:/nfs/client";
|
|
range 192.168.51.10 192.168.51.100;
|
|
}
|