Project

General

Profile

Feature #207 » dhcpd.conf

Sample dhcpd configuration - Hammel, 04 Aug 2013 18:04

 
1
ddns-update-style none;
2
ignore client-updates;
3
authoritative;
4
option local-wpad code 252 = text;
5
 
6
subnet 192.168.3.0 netmask 255.255.255.0 {
7
    # --- default gateway
8
    # None - we don't route outside
9

    
10
    # --- Netmask
11
    option subnet-mask 255.255.255.0;
12

    
13
    # --- Broadcast Address
14
    option broadcast-address 255.255.255.255;
15
    option time-offset 0;
16

    
17
    # Lease time = 1 day
18
    default-lease-time 86400;
19
    max-lease-time 86400;
20

    
21
    # Max 30 clients
22
    pool {
23
        allow unknown-clients;
24
        range 192.168.3.50 192.168.3.80;
25
    }
26
}
(1-1/2)