All pastes #839716 Raw Edit

Anonymous

public text v1 · immutable
#839716 ·published 2007-12-31 05:06 UTC
rendered paste body
#
# Sample configuration file for ISC dhcpd for Debian
#
# $Id: dhcpd.conf,v 1.4.2.2 2002/07/10 03:50:33 peloy Exp $
#

# option definitions common to all supported networks
option domain-name "llamanet.org";
option domain-name-servers 192.168.1.1;
option time-offset 28800;      # Pacific Standard Time

default-lease-time 600;
max-lease-time 7200;

# primary subnet
subnet 192.168.1.0 netmask 255.255.255.0 {

 range 192.168.1.001 192.168.1.040;

 # option domain-name-servers 192.168.0.9, 203.12.160.35, 203.12.160.36, 4.2.2.1;
 option domain-name-servers 192.168.1.1;
 option broadcast-address 192.168.1.255;
 option routers 192.168.1.1;
 default-lease-time 25000;
 max-lease-time 45000;
}