]> git.ipfire.org Git - thirdparty/dracut.git/blob - test/TEST-60-BONDBRIDGEVLANIFCFG/dhcpd.conf
test/TEST-60-IFCFG/test.sh: fixed qemu hubport netifs
[thirdparty/dracut.git] / test / TEST-60-BONDBRIDGEVLANIFCFG / dhcpd.conf
1 ddns-update-style none;
2
3 use-host-decl-names true;
4
5 subnet 192.168.50.0 netmask 255.255.255.0 {
6 option subnet-mask 255.255.255.0;
7 option routers 192.168.50.1;
8 next-server 192.168.50.1;
9 server-identifier 192.168.50.1;
10 option domain-name-servers 192.168.50.1;
11 option domain-search "example.com";
12 option domain-name "other.com";
13 option root-path "nfs:192.168.50.1:/nfs/client";
14 range 192.168.50.10 192.168.50.100;
15 }
16
17 subnet 192.168.51.0 netmask 255.255.255.0 {
18 option subnet-mask 255.255.255.0;
19 option routers 192.168.51.1;
20 next-server 192.168.51.1;
21 server-identifier 192.168.51.1;
22 option domain-name-servers 192.168.51.1;
23 option domain-search "example.com";
24 option domain-name "other.com";
25 option root-path "nfs:192.168.51.1:/nfs/client";
26 range 192.168.51.10 192.168.51.100;
27 }