Update of /cvsroot/dhcp-agent/dhcp-agent/conf
In directory sc8-pr-cvs1:/tmp/cvs-serv6629/conf
Added Files:
README networking-basic.conf
Log Message:
conf files
--- NEW FILE: README ---
$Header: /cvsroot/dhcp-agent/dhcp-agent/conf/README,v 1.1 2002/12/19 03:55:54 actmodern Exp $
Example configuration files. Copy these over to
/etc/dhcp-client/[interface-name].conf where [interface-name] is
the name of the interface you are configuring for. If the
interface is called "eth0" you would do, as root:
> cp conf-file /etc/dhcp-client/eth0.conf
In addition to this please note that the directory is whatever
the default directory for the client is.
The example configuration files:
basic-networking : basic networking. ip, dns, and router setup.
Thamer Alharbash <tm...@wh...>
--- NEW FILE: networking-basic.conf ---
# $Header: /cvsroot/dhcp-agent/dhcp-agent/conf/networking-basic.conf,v 1.1 2002/12/19 03:55:54 actmodern Exp $
#
# Basic DHCP client configuration script.
# We only ask for network setup parameters.
#
# Thamer Alharbash <tm...@wh...>
#
# This will setup dhcp to accept the following configuration
# parameters from any dhcp server:
#
# ip-address, subnet mask, lease time, renewal time, rebinding time,
# interface mtu, domain name, dns server
#
# It will require all of the above. Otherwise uncomment below to be
# more flexible
#
#
# IP address requests are implicit we just ask for the other options below.
#
request subnet-mask, ip-address-lease-time, renewal-time, rebinding-time,
domain-name-servers, domain-name, interface-mtu;
#
# The require directive makes us ignore servers which do not return
# all the options we ask for. Uncomment this to accept as
# much as we get.
#
require subnet-mask, ip-address-lease-time, renewal-time, rebinding-time,
domain-name-servers, domain-name;
#
# Additional variable settings.
#
# Interface MTU
# Set up our default interface mtu in case the server does not
# give us one.
set interface-mtu = 1500;
#
# DHCP -- try up to three times before giving up.
#
set dhcp-retries = 3;
#
# ICMP -- when doing ICMP retry up to three times.
#
set icmp-retries = 3;
#
# Router discovery -- should we use ICMP to find the best router?
#
# set do-icmp-find-best-router = no;
|