Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 May 2001 22:12:21 +0100
From:      Richard Smith <rdls@rdls.net>
To:        Ben Franklin <tired89@angelfire.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: dhcp server
Message-ID:  <20010521221221.B324@gaia.home.rdls.net>
In-Reply-To: <EKDHDKMKMIPJDAAA@angelfire.com>; from tired89@angelfire.com on Sun, May 20, 2001 at 09:44:17PM -0500
References:  <EKDHDKMKMIPJDAAA@angelfire.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, May 20, 2001 at 09:44:17PM -0500, Ben Franklin wrote:
> any way anyone can give me a line by line (almost) intructions on setting up a dhcp server on my freebsd 4.3 rc 1 machine? (p200 compaq).  thanks to anyone who can help

I use the isc-dhcp port with the following /usr/local/etc/dhcpd.conf:

-----dhcpd.conf-----
option domain-name "home.rdls.net";
option routers 10.0.0.1;
option domain-name-servers 10.0.0.1;

subnet 10.0.0.0 netmask 255.255.255.0 {
	range 10.0.0.32 10.0.0.128;
}
--------------------

I created a script within /usr/local/etc/rc.d to start the server,
which ultimately executes the command line: `/usr/local/sbin/dhcpd -q'

Rich.

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010521221221.B324>