added ikev2/dhcp-static-client-id scenario

This commit is contained in:
Andreas Steffen
2010-04-23 12:56:59 +02:00
parent 55fe05d489
commit 2dbff1bf53
16 changed files with 324 additions and 0 deletions
@@ -0,0 +1,25 @@
# 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 "carol@strongswan.org";
fixed-address 10.1.0.30;
}
host dave {
option dhcp-client-identifier "dave@strongswan.org";
fixed-address 10.1.0.40;
}
@@ -0,0 +1,9 @@
interface=eth0
dhcp-range=10.1.0.50,10.1.0.60,255.255.0.0,10.1.255.255
dhcp-host=id:[email protected],10.1.0.30
dhcp-host=id:[email protected],10.1.0.40
dhcp-option=option:router,10.1.0.1
dhcp-option=option:dns-server,10.1.0.20
dhcp-option=option:netbios-ns,10.1.0.10
dhcp-option=option:domain-name,strongswan.org
log-dhcp
@@ -0,0 +1,24 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
opts="start stop"
depend() {
need net
need logger
}
start() {
ebegin "Starting DHCP server"
start-stop-daemon --start --quiet --exec /usr/sbin/dhcpd
eend $?
}
stop() {
ebegin "Stopping DHCP server"
start-stop-daemon --stop --quiet --pidfile /var/run/dhcpd.pid
rm -f /var/state/dhcp/dhcpd.leases
touch /var/state/dhcp/dhcpd.leases
eend $?
}