Project

General

Profile

Sample dhcpdconf » History » Version 1

Ohad Levy, 05/02/2011 08:28 AM

1 1 Ohad Levy
<pre>
2
ddns-update-style interim;
3
ignore client-updates;
4
authoritative;
5
allow booting;
6
allow bootp;
7
8
omapi-port 7911;
9
10
subnet 10.1.1.0 netmask 255.255.255.0 {
11
# --- default gateway
12
  option routers      10.1.1.254;
13
  option subnet-mask  255.255.255.0;
14
15
  option domain-name    "domain.com";
16
  option domain-name-servers  10.1.1.1, 8.8.8.8;
17
  option log-servers    syslog;
18
  option ntp-servers    ntp;
19
20
  range dynamic-bootp 10.1.1.10 10.1.1.250;
21
  default-lease-time 21600;
22
  max-lease-time 43200;
23
24
}
25
</pre>