aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ikev2/dhcp-static-mac/hosts/venus/etc/dhcpd.conf
blob: 20666f7018f300ac705d22a4dd27d79c8014a601 (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 {
  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;
}