DHCP server issues.

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <misc@...>
Date: Sunday, February 25, 2007 - 8:45 pm

I've been toying with the DHCP server options but cannot seem to bring
up the process; everytime I run ps there is no dhcpd process to be found
and no computers on my network are pulling down addresses from the server.
My DHCPD.conf file looks as such.

-bash-3.1# nano /etc/dhcpd.conf
GNU nano 1.2.5 File: /etc/dhcpd.conf

# $OpenBSD: dhcpd.conf,v 1.1 1998/08/19 04:25:45 form Exp $
#
# DHCP server options.
# See dhcpd.conf(5) and dhcpd(8) for more information.
#

# Network: 192.168.1.0/255.255.255.0
# Domain name: none
# Name servers: 68.94.156.1 and 68.94.157.1
# Default router: 192.168.1.1
# Addresses: 192.168.1.20 - 192.168.1.35
#
shared-network LOCAL-NET {
option domain-name "example.com";
option domain-name-servers 68.94.156.1, 68.94.157.1;

subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
range 192.168.1.20 192.168.1.35;
}
}

And my interfaces are configured as such.

cat /etc/hostname.rl0 < External interface
inet 192.168.1.2 255.255.255.0 NONE

cat /etc/hostname.rl1 < Internal Interface
192.168.1.3 255.255.255.0

nano rc.conf.local reads as such
dhcpd_flags=""

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
DHCP server issues., Bray Mailloux, (Sun Feb 25, 8:45 pm)
Re: DHCP server issues., Peter Hessler, (Sun Feb 25, 11:32 pm)
Re: DHCP server issues., Jon Morby, (Sun Feb 25, 9:20 pm)
Re: DHCP server issues., Darren Spruell, (Sun Feb 25, 9:03 pm)
Re: DHCP server issues., , (Sun Feb 25, 9:03 pm)