From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 16:12:01 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30BE41065670 for ; Mon, 14 Sep 2009 16:12:01 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id E9D908FC08 for ; Mon, 14 Sep 2009 16:12:00 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 60A0433DF8 ; Mon, 14 Sep 2009 18:11:59 +0200 (CEST) Message-ID: <4AAE6B4A.8090905@shapeshifter.se> Date: Mon, 14 Sep 2009 18:11:54 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.23 (X11/20090912) MIME-Version: 1.0 To: Kevin Oberman References: <20090914155807.5ED7B1CC37@ptavv.es.net> In-Reply-To: <20090914155807.5ED7B1CC37@ptavv.es.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: emulation@freebsd.org Subject: Re: New network capabilities? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Sep 2009 16:12:01 -0000 Kevin Oberman wrote: > I see that the new port of VB seems to have added a couple of kernel > modules that are probably network related: vboxnetadp.ko and > vboxnetflt.ko. > > Do these provide new networking options? I have seen quite a bit of > discussion of new network code on this list, but I am not sure exactly > what they cover or how to use them and I don't see much on the wiki, but > it looks like TAP is now available. > > Any clues for the clueless? They implement "Bridge Adapter" (vboxnetflt) and "Host-only Adapter" (vboxnetadp). Bridge is what it sounds like, it will bridge the guest interface with a physical interface. So, if you want your guest to be a part of your network, select "Bridge Adapter" and the select your physical ethernet interface in the drop-down list. Host-only adapter can be used to create a virtual network among guests and the physical machine. It creates a vboxnetX interface that acts like it's connected to a separate ethernet segment to which the guests are connected. I don't know how the TAP stuff works. Fredrik