]> git.pld-linux.org Git - packages/dhcp.git/blob - dhcpd.conf.sample
- release 2
[packages/dhcp.git] / dhcpd.conf.sample
1 ddns-update-style               none;
2 subnet 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.149495 seconds and 3 git commands to generate.