summaryrefslogtreecommitdiff
path: root/keama/samples/simple.conf
blob: 76c1cfa5a32f1861098016c880e5aae5a12c9d8f (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
26
27
28
29
30
31
32
33
# -------------------------
# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
#

# option definitions common to all supported networks...
option domain-name "example.org";
# option domain-name-servers ns1.example.org, ns2.example.org;

default-lease-time 1800;
max-lease-time 7200;

# We're going to be authoritative for the network we've
# just created.

authoritative;

# No service will be given on this subnet, but we're telling
# the DHCP server about it so it understands it's there and
# not to hand out leases for it.

subnet 10.14.8.195 netmask 255.255.255.0 {
}

# But we do want to hand out leases for the 192.168.1.0/24
# network for purposes of this test..

subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.100 192.168.1.150;
    option routers 192.168.1.1;
}
# -------------------------