26 lines
599 B
ISCdhcpd
26 lines
599 B
ISCdhcpd
# dhcpd configuration file
|
|
|
|
ddns-update-style none;
|
|
|
|
subnet 10.1.0.0 netmask 255.255.0.0 {
|
|
option domain-name "strongswan.org";
|
|
option domain-name-servers 10.1.0.20;
|
|
option netbios-name-servers 10.1.0.10;
|
|
option routers 10.1.0.1;
|
|
option broadcast-address 10.1.255.255;
|
|
next-server 10.1.0.20;
|
|
|
|
range 10.1.0.50 10.1.0.60;
|
|
}
|
|
|
|
host carol {
|
|
hardware ethernet 7a:a7:8f:fc:db:3b;
|
|
fixed-address 10.1.0.30;
|
|
}
|
|
|
|
host dave {
|
|
hardware ethernet 7a:a7:35:78:bc:85;
|
|
fixed-address 10.1.0.40;
|
|
}
|
|
|