Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Apr 2004 16:01:17 -0400
From:      "Troy Settle" <troy@psknet.com>
To:        "'Kory Hamzeh'" <kory@avatar.com>, <Freebsd-questions@freebsd.org>
Subject:   RE: DHCP Server
Message-ID:  <E1BIYlR-000Il6-EU@psknet.com>
In-Reply-To: <032601c42c91$45f942a0$14ce21c7@TOMCAT>

next in thread | previous in thread | raw e-mail | index | archive | help

Try /usr/ports/net/isc-dhcp3/

Initial configuration can be a bit confusing.  Here's a working config from
my box at home:

  option domain-name-servers 192.168.0.1;
  default-lease-time 86400;
  max-lease-time 864000;
  authoritative;
  ddns-update-style none;
  log-facility local7;

  subnet 192.168.0.0 netmask 255.255.255.0 {
    range 192.168.0.20 192.168.0.250;
    option routers 192.168.0.1;
  }

Assuming you have two nics in the box, you'll want to specify the interface
that you want dhcpd to listen on (otherwise, it will gripe about not having
a configuration for the other nic).

HTH, 

--
  Troy Settle
  Pulaski Networks
  http://www.psknet.com
  866.477.5638
 

> -----Original Message-----
> From: owner-freebsd-questions@freebsd.org 
> [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Kory Hamzeh
> Sent: Tuesday, April 27, 2004 3:53 PM
> To: Freebsd-questions@freebsd.org
> Subject: DHCP Server
> 
> 
> I'm running 4.3-RELEASE and I need to add support for DHCP Clients on
> our networks. I looked through the ports list and got very 
> confused. All
> I need to do is to be able to hand out up to a dozen IP addresses to
> client PC's on our LAN. What is the simplest way of achieving this?
> 
> Thanks,
> Kory
> 
> 
> _______________________________________________
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to 
> "freebsd-questions-unsubscribe@freebsd.org"
> 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1BIYlR-000Il6-EU>