From owner-freebsd-net@FreeBSD.ORG  Tue Aug  1 16:01:49 2006
Return-Path: <owner-freebsd-net@FreeBSD.ORG>
X-Original-To: freebsd-net@freebsd.org
Delivered-To: freebsd-net@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id D8DB616A4DD
	for <freebsd-net@freebsd.org>; Tue,  1 Aug 2006 16:01:49 +0000 (UTC)
	(envelope-from nayak_purushotham@yahoo.com)
Received: from web56101.mail.re3.yahoo.com (web56101.mail.re3.yahoo.com
	[216.252.110.195])
	by mx1.FreeBSD.org (Postfix) with SMTP id 358FC43D77
	for <freebsd-net@freebsd.org>; Tue,  1 Aug 2006 16:01:42 +0000 (GMT)
	(envelope-from nayak_purushotham@yahoo.com)
Received: (qmail 73383 invoked by uid 60001); 1 Aug 2006 16:01:41 -0000
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com;
	h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding;
	b=2LKuthmu2HuJ7DbF9Ri/vhELntQ2DItO+dHT6AuC1CZjlNAz8fpS8kRnOEiRRSD7ZD5Wpr5hmHbduaGhlQp4XZL9pChCQsL3KG3PQ9EM7isTmmbnbxEdH50K+THj1gjJKDOstE4rCeornngRROY8cyYZDaYGz3nPT363PEPCuxc=
	; 
Message-ID: <20060801160141.73380.qmail@web56101.mail.re3.yahoo.com>
Received: from [209.136.0.128] by web56101.mail.re3.yahoo.com via HTTP;
	Tue, 01 Aug 2006 09:01:41 PDT
Date: Tue, 1 Aug 2006 09:01:41 -0700 (PDT)
From: Purushotham Nayak <nayak_purushotham@yahoo.com>
To: freebsd-net@freebsd.org
MIME-Version: 1.0
X-Mailman-Approved-At: Tue, 01 Aug 2006 17:28:48 +0000
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.5
Subject: ethernet bridge and dhcpd
X-BeenThere: freebsd-net@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Networking and TCP/IP with FreeBSD <freebsd-net.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-net>,
	<mailto:freebsd-net-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-net>
List-Post: <mailto:freebsd-net@freebsd.org>
List-Help: <mailto:freebsd-net-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-net>,
	<mailto:freebsd-net-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 01 Aug 2006 16:01:50 -0000

Hi All,

I have a routerboard with two ethernet ports (sis0 and sis1). I've been trying top setup a bridge and also run the dhcpd server on it. I've setup sis0 with an IP address and sis1 is just marked up in rc.conf. The bridge seems to work because if I statically assign an IP address to a laptop and connect it to sis1 I can ping the routers IP which is what is assigned to sis0. But the laptop cannot get an IP using DHCP. tcpdumping on sis0 doesn't show me the DHCPREQUEST from the laptop that's coming in through sis1 (but it doesn't show me any traffic during ping request either but that's not broadcast so I guess that's expected).

Here's my rc.conf

-------------------------------------------------------------------------------------
inetd_enable="YES"
ifconfig_sis0="inet 10.1.1.1 netmask 255.255.255.0"
ifconfig_sis1="up"
ifconfig_ath0="down"

gateway_enable="YES"

dhcpd_enable="YES"
dhcpd_flags="-q"
dhcpd_conf=/usr/local/etc/dhcpd.conf"
-----------------------------------------------------------------------

And here is my dhcpd.conf

-------------------------------------------------------------------------
ddns-update-style ad-hoc;
default-lease-time 600;
max-lease-time 7200;

subnet 10.1.1.0 netmask 255.255.255.0 {
    range 10.1.1.64 10.1.1.250;
    option routers 10.1.1.1;
}
-------------------------------------------------------------------

Can anyone please let me know if there is something I'm doing wrong.

nayak
 		
---------------------------------
Do you Yahoo!?
 Get on board. You're invited to try the new Yahoo! Mail Beta.