]> git.pld-linux.org Git - packages/dhcp.git/commitdiff
- sample config file for dhcpd.
authorkloczek <kloczek@pld-linux.org>
Wed, 1 Sep 1999 01:33:55 +0000 (01:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dhcpd.conf.sample -> 1.1

dhcpd.conf.sample [new file with mode: 0644]

diff --git a/dhcpd.conf.sample b/dhcpd.conf.sample
new file mode 100644 (file)
index 0000000..182cf50
--- /dev/null
@@ -0,0 +1,27 @@
+subnet 192.168.0.0 netmask 255.255.255.0 {
+# --- default gateway
+       option routers                  192.168.0.1;
+       option subnet-mask              255.255.255.0;
+
+       option nis-domain               "domain.org";
+       option domain-name              "domain.org";
+       option domain-name-servers      192.168.1.1;
+
+       option time-offset              -5;     # Eastern Standard Time
+#      option ntp-servers              192.168.1.1;
+#      option netbios-name-servers     192.168.1.1;
+# --- Selects point-to-point node (default is hybrid). Don't change this unless
+# -- you understand Netbios very well
+#      option netbios-node-type 2;
+
+       range dynamic-bootp 192.168.0.128 192.168.0.255;
+       default-lease-time 21600;
+       max-lease-time 43200;
+
+       # we want the nameserver to appear at a fixed address
+       host ns {
+               next-server marvin.redhat.com;
+               hardware ethernet 12:34:56:78:AB:CD;
+               fixed-address 207.175.42.254;
+       }
+}
This page took 0.14444 seconds and 4 git commands to generate.