From owner-freebsd-questions  Sat Feb  3 12:17:27 2001
Delivered-To: freebsd-questions@freebsd.org
Received: from priv-edtnes12-hme0.telusplanet.net (fepout4.telus.net [199.185.220.239])
	by hub.freebsd.org (Postfix) with ESMTP id 43D6237B4EC
	for <questions@freebsd.org>; Sat,  3 Feb 2001 12:16:10 -0800 (PST)
Received: from CRX.sfu.ca ([209.53.63.29])
          by priv-edtnes12-hme0.telusplanet.net
          (InterMail vM.4.01.03.10 201-229-121-110) with ESMTP
          id <20010203201611.PCLV15963.priv-edtnes12-hme0.telusplanet.net@CRX.sfu.ca>
          for <questions@freebsd.org>; Sat, 3 Feb 2001 13:16:11 -0700
Message-Id: <5.0.2.1.2.20010203121814.02b931a8@mail.brightmail.com>
X-Sender: tmchow@popserver.sfu.ca
X-Mailer: QUALCOMM Windows Eudora Version 5.0.2
Date: Sat, 03 Feb 2001 12:19:12 -0800
To: questions@freebsd.org
From: Trevin Chow <tmchow@sfu.ca>
Subject: My dhcpd.conf file -- DNS problems?
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"; format=flowed
Sender: owner-freebsd-questions@FreeBSD.ORG
Precedence: bulk
X-Loop: FreeBSD.ORG

As requested, here's my dhcpd.conf file:

option domain-name "foo.com";
option domain-name-servers 192.168.0.1;
default-lease-time 600;
max-lease-time 172800;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;

#
# Fixed-host settings
#
host client1 {
         hardware ethernet 00:A0:CC:56:FE:1F;
         fixed-address 192.168.0.2;
}

host client2 {
         hardware ethernet 00:50:DA:9A:0D:05;
         fixed-address 192.168.1.3;
}

host client3 {
         hardware ethernet 00:A0:CC:56:F9:53;
         fixed-address 192.168.1.2;
}

#
# Subnet settings
#
subnet 192.168.0.0 netmask 255.255.255.0 {
         range 192.168.0.3 192.168.0.10;
         option routers 192.168.0.1;
}

subnet 192.168.1.0 netmask 255.255.255.0 {
         range 192.168.1.4 192.168.1.10;
         option routers 192.168.1.1;
}



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