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