From owner-freebsd-questions@FreeBSD.ORG Tue Oct 4 14:45:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C1E816A420 for ; Tue, 4 Oct 2005 14:45:17 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D2443D5A for ; Tue, 4 Oct 2005 14:45:08 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 4EEE05D79; Tue, 4 Oct 2005 10:45:08 -0400 (EDT) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 47732-01; Tue, 4 Oct 2005 10:45:07 -0400 (EDT) Received: from [192.168.1.3] (pool-68-161-71-31.ny325.east.verizon.net [68.161.71.31]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 72E675C1F; Tue, 4 Oct 2005 10:45:07 -0400 (EDT) Message-ID: <4342957A.7060200@mac.com> Date: Tue, 04 Oct 2005 10:45:14 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Foo Ji-Haw References: <00ad01c5c7c8$e187d7d0$c801a8c0@nexpc> <4340AB54.5080101@gmail.com> <004a01c5c7d3$a6fb2170$c801a8c0@nexpc> <43410D8E.60602@gmail.com> <010701c5c89a$f193a0f0$c801a8c0@nexpc> In-Reply-To: <010701c5c89a$f193a0f0$c801a8c0@nexpc> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com Cc: freebsd-questions@freebsd.org Subject: Re: How do you patch a driver? 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: Tue, 04 Oct 2005 14:45:17 -0000 Foo Ji-Haw wrote: [ ...don't top-post, please... ] > I also have this line in dmesg: > ipfw2 initialized, divert disabled, rule-based forwarding disabled, default > to deny, logging disabled > > I see that 'rule-based forwarding' is disabled. Is this what caused the > error? How can I enable it? I can't find the details on the Handbook. Add: options IPFIREWALL_FORWARD options IPFIREWALL_DIVERT ...to your kernel config file. This is mostly documented here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipfw.html Also note that ipfw forwarding alone may not do what you expect, unless you make special efforts on the machine being forwarded to, to recognize the additional IP addresses. You might find using the redirect_host or redirect_port directives to natd more appropriate for your purposes. -- -Chuck