From owner-freebsd-net@FreeBSD.ORG Thu Aug 4 09:42:54 2005 Return-Path: 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 7779B16A41F for ; Thu, 4 Aug 2005 09:42:54 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B3A643D49 for ; Thu, 4 Aug 2005 09:42:53 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 8175E1CCD4; Thu, 4 Aug 2005 21:42:52 +1200 (NZST) Date: Thu, 4 Aug 2005 21:42:52 +1200 From: Andrew Thompson To: Darcy Buskermolen Message-ID: <20050804094252.GA37921@heff.fud.org.nz> References: <20050803235302.O98559@freebsd4.homenet.dbitech.bc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050803235302.O98559@freebsd4.homenet.dbitech.bc.ca> User-Agent: Mutt/1.4.2.1i Cc: freebsd-net@freebsd.org Subject: Re: inet6_pfil_hook undefined on -HEAD X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Aug 2005 09:42:54 -0000 On Wed, Aug 03, 2005 at 11:58:02PM -0700, Darcy Buskermolen wrote: > In an effort to test the bridge device, I followed the instructions in > man if_bridge to create the bridge, I received an SIOCIFCREATE Invalid > argument, so I figured I needed to load the bridging code module. When I > attempt to kldload if_bridge I get the above error. > It looks like you have built your kernel without INET6 and are loading if_bridge as a module (automatically from ifconfig). Modules are built independently from the kernel so you will need to put NO_INET6=yes in your /etc/make.conf and rebuild the module (cd /sys/modules/if_bridge; make; make install clean) cheers, Andrew