summaryrefslogtreecommitdiff
path: root/testing/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/dhcpd.conf
blob: 44ee681b6f496b17a6832ff383b199c865e7ce83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}