From 7e1e18d33a50e7b72768b2404c5bb62eb8ecf5e8 Mon Sep 17 00:00:00 2001 From: Ryan Haggerty Date: Thu, 27 Oct 2005 19:58:07 +0000 Subject: [PATCH] dhcp configuration added. --- testing/dhcp/README | 7 +++++++ testing/dhcp/dhcpd.conf | 31 +++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 testing/dhcp/README create mode 100644 testing/dhcp/dhcpd.conf diff --git a/testing/dhcp/README b/testing/dhcp/README new file mode 100644 index 00000000..eafa1547 --- /dev/null +++ b/testing/dhcp/README @@ -0,0 +1,7 @@ +dhcpd.conf belongs in /etc + +start the service + /etc/init.d/dhcpd start + +to ask for an address from the service + dhclient eth0 diff --git a/testing/dhcp/dhcpd.conf b/testing/dhcp/dhcpd.conf new file mode 100644 index 00000000..6192fb47 --- /dev/null +++ b/testing/dhcp/dhcpd.conf @@ -0,0 +1,31 @@ +ddns-update-style interim; +ignore client-updates; + +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.0.1; + + option time-offset -18000; # 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.254; + 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; + } +}