26 lines
626 B
ISCdhcpd
26 lines
626 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 {
|
|
option dhcp-client-identifier "[email protected]";
|
|
fixed-address 10.1.0.30;
|
|
}
|
|
|
|
host dave {
|
|
option dhcp-client-identifier "[email protected]";
|
|
fixed-address 10.1.0.40;
|
|
}
|
|
|