From owner-freebsd-questions@FreeBSD.ORG Mon Mar 2 16:09:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91745106566B for ; Mon, 2 Mar 2009 16:09:14 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from imedmobility.com (host-50.216-16-29.iw.net [216.16.29.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5C2888FC1F for ; Mon, 2 Mar 2009 16:09:14 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from midco.net (host-47-73-107-208.midco.net [208.107.73.47]) by imedmobility.com (Postfix) with ESMTPSA id 603B21173C6B for ; Mon, 2 Mar 2009 10:09:13 -0600 (CST) Message-ID: <49AC048B.7000109@gmail.com> Date: Mon, 02 Mar 2009 10:08:43 -0600 From: Adam Vande More User-Agent: Thunderbird 2.0.0.18 (X11/20081225) MIME-Version: 1.0 CC: FreeBSD Questions References: <200903020828.n228SAN7080657@banyan.cs.ait.ac.th> <200903020935.n229ZXXo090477@banyan.cs.ait.ac.th> <49ABE3B8.1010801@gmail.com> <49ABE795.1070306@gmail.com> <49ABECF1.9070900@gmail.com> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Bridging-(How to test and verify that bridging is enabled) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2009 16:09:14 -0000 Faizan ul haq Muhammad wrote: > > > > > > > i noted that, following information is missing > > > member: sk0 flags=143 > > > ifmaxaddr 0 port 1 priority 128 path cost 2000000 > > > member: sk1 flags=143 > > > ifmaxaddr 0 port 2 priority 128 path cost 200000 > > > > > > Now i need to know how to add the interfaces..? > > > Any command do u knw and can help me..? > > > > > > Regards!!! > > > > > > > > > ifconfig bridge0 addm sk0 addm sk1 up > > ifconfig sk0 up > > ifconfig sk1 up > > Thanks a lot dear.. > it worked. but i m still confused that i have the alternative > configuration in rc.conf as per guideline here on this page: > http://www.freebsd.org/doc/en/books/handbook/network-bridging.html > it should have worked, but it did not. and here with these commands, > it is working.. I am able to get reply to ping > Make sure you got the full config in there adjusted to your settings: cloned_interfaces="bridge0" ifconfig_bridge0="addm fxp0 addm fxp1 up" ifconfig_fxp0="up" ifconfig_fxp1="up" And that you've rebooted. Assuming you've done those steps correctly, it should work. Generally issue's like that are rooted in typo's and misconfigurations. As your typo count gets incremented, you will learn humility. ;) Least that's how it was for me. Another good rule of thumb is if you're following the handbook and it's still doesn't work then you're not following the handbook. Glad it works for you.