]> git.ipfire.org Git - thirdparty/dracut.git/blame - test/TEST-30-ISCSI/dhcpd.conf
fix: codespell
[thirdparty/dracut.git] / test / TEST-30-ISCSI / dhcpd.conf
CommitLineData
eeb72103
HH
1ddns-update-style none;
2
3use-host-decl-names true;
4
5subnet 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
14 # MAC numbering scheme:
ddf63231 15 # NFSv3: last octet starts at 0x00 and works up
eeb72103
HH
16
17 group {
52b91b66 18 option root-path "iscsi:192.168.50.1:::1:iqn.2009-06.dracut:target0";
eeb72103
HH
19
20 host iscsi-1 {
21 hardware ethernet 52:54:00:12:34:00;
22 fixed-address 192.168.50.101;
23 }
24 }
25}
86f09040
HH
26
27subnet 192.168.51.0 netmask 255.255.255.0 {
28 option subnet-mask 255.255.255.0;
29 option routers 192.168.51.1;
30 next-server 192.168.51.1;
31 server-identifier 192.168.51.1;
32 option domain-name-servers 192.168.51.1;
33 option domain-search "example.com";
34 option domain-name "other.com";
35
36 # MAC numbering scheme:
ddf63231 37 # NFSv3: last octet starts at 0x00 and works up
86f09040
HH
38
39 group {
8b2afb08 40 #option root-path "iscsi:192.168.51.1:::1:iqn.2009-06.dracut:target1";
86f09040
HH
41
42 host iscsi-2 {
43 hardware ethernet 52:54:00:12:34:01;
44 fixed-address 192.168.51.101;
45 }
46
47 }
48}