At 4/21/2002 12:26 PM -0700, you wrote:
>Here is my /etc/dhcpd.conf file:
>-----
>         range dynamic-bootp 172.16.10.2 172.16.10.254;

Why do you have "dynamic-bootp" in there? Also, this needs to be inside a 
"subnet" declaration so it's incomplete. For reference, at the end of this 
mail is my dhcpd.conf file which does work well.

Also, since you're connected to the DSL you'll need to ensure that your 
dhcpd *only* services your internal network. In my case this is eth1, so 
see the file /etc/sysconfig/dhcpd for the right changes (documented below). 
Then issue a "service dhcpd restart".

[rpaiz@firewall sysconfig]$ cat /etc/sysconfig/dhcpd
# Command line options here
DHCPDARGS=eth1

[rpaiz@firewall rpaiz]$ cat /etc/dhcpd.conf
# dhcpd.conf

#
# Global Parameters
#

max-lease-time                  86400;
default-lease-time              86400;


#
# DHCP Client Options
#

option domain-name              "suma-csi.com";
option domain-name-servers      192.168.0.1;
option ntp-servers              192.168.0.1;
option routers                  192.168.0.1;


#
# Configuration
#

allow           unknown-clients;
deny            bootp;


#
# Network Declaration
#

shared-network SUMA {
         subnet 192.168.0.0 netmask 255.255.255.0 {
                 range 192.168.0.101 192.168.0.254;
         }
}


#
# User Configuration
#
#
#group {
#       use-host-decl-names     on;
#
#       host rodolfo {
#               hardware ethernet       00:00:86:56:C9:F2;
#               fixed-address           192.168.0.101;
#       }
#
#       host daniela {
#               hardware ethernet       00:e0:98:73:e5:8e;
#               fixed-address           192.168.0.102;
#       }
#}
#


-- 
Rodolfo J. Paiz
[EMAIL PROTECTED]



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to