Bryan,

You probably don't have the broadcast route set.  Here are all my configs
for a Redhat box (note that these aren't totally stock).  Like usual.. 
this is all in the TrinityOS doc:

        <http://www.ecst.csuchico.edu/~dranch/LINUX/TrinityOS.wri>.

Note:

        1) I statically assign addresses via DHCP.  Better security
                here...

        2) I run DHCP on my internal LAN on eth1.  I don't run
           dhcp on my cablemodemon eth0


[root@trinity2 init.d]# less dhcpd
#!/bin/sh
#
# dhcpd         This shell script takes care of starting and stopping
#               dhcpd.
#
# chkconfig: 2345 65 35
# description: dhcpd provide access to Dynamic Host Control Protocol.

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -f /usr/sbin/dhcpd ] || exit 0

# See how we were called.
case "$1" in
  start)
        # Start daemons.
        echo -n "Starting dhcpd: "
        /sbin/route add -host 255.255.255.255 eth1
        daemon /usr/sbin/dhcpd eth1
        echo
        touch /var/lock/subsys/dhcpd
        ;;
  stop)
        # Stop daemons.
        echo -n "Shutting down dhcpd: "
        killproc dhcpd
        /sbin/route del 255.255.255.255
        echo
        rm -f /var/lock/subsys/dhcpd
        ;;
  restart)
        $0 stop
        $0 start
        ;;
  status)
        status dhcpd
        ;;
  *)
        echo "Usage: dhcpd {start|stop|restart|status}"
        exit 1
esac

exit 0



[root@trinity2 /etc]# less dhcpd.conf 
server-identifier trinity2-int.trinnet.net;
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.0.255;
        option routers 192.168.0.1;
        option domain-name-servers 192.168.0.1, 24.1.64.33, 24.1.64.34;
        option domain-name "trinnet.net";
        default-lease-time 86400;       

subnet 192.168.0.0 netmask 255.255.255.0 {
        range 192.168.0.9 192.168.0.10;
        }

host dellster.trinnet.net {
        hardware ethernet 00:60:08:B1:36:4A;
        fixed-address 192.168.0.4;      
        option host-name dellster;
        }

host stimpy2.trinnet.net {
        hardware ethernet 00:60:08:8E:D4:A4;
        fixed-address 192.168.0.2;      
        option host-name stimpy2;
        }
.----------------------------------------------------------------------------.
|  David A. Ranch - Remote Access/Linux/PC hardware      [EMAIL PROTECTED]  |
!----                                                                    ----!
`----- For more detailed info, see http://www.ecst.csuchico.edu/~dranch -----'
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For daily digest info, email [EMAIL PROTECTED]

Reply via email to