]> git.pld-linux.org Git - packages/dhcp.git/blame - dhcpd.conf.sample
- updated to final 3.0 (Epoch: 2).
[packages/dhcp.git] / dhcpd.conf.sample
CommitLineData
3e807405 1subnet 192.168.0.0 netmask 255.255.255.0 {
2# --- default gateway
3 option routers 192.168.0.1;
4 option subnet-mask 255.255.255.0;
5
6 option nis-domain "domain.org";
7 option domain-name "domain.org";
8 option domain-name-servers 192.168.1.1;
9
10 option time-offset -5; # Eastern Standard Time
11# option ntp-servers 192.168.1.1;
12# option netbios-name-servers 192.168.1.1;
13# --- Selects point-to-point node (default is hybrid). Don't change this unless
14# -- you understand Netbios very well
15# option netbios-node-type 2;
16
17 range dynamic-bootp 192.168.0.128 192.168.0.255;
18 default-lease-time 21600;
19 max-lease-time 43200;
20
21 # we want the nameserver to appear at a fixed address
22 host ns {
23 next-server marvin.redhat.com;
24 hardware ethernet 12:34:56:78:AB:CD;
25 fixed-address 207.175.42.254;
26 }
27}
This page took 0.095313 seconds and 4 git commands to generate.