aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/dhcp/dhcpd.conf
blob: 334ea30e2d61ee16b3013012c94d2858a11d239c (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
# 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     PH_IP_VENUS;
  option netbios-name-servers    PH_IP_ALICE;
  option routers                 PH_IP_MOON1;
  option broadcast-address       10.1.255.255;
  next-server                    PH_IP_VENUS;

  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;
}