From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 05:45:06 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85278106566B for ; Sun, 13 Sep 2009 05:45:06 +0000 (UTC) (envelope-from dnaeon@gmail.com) Received: from mail-ew0-f208.google.com (mail-ew0-f208.google.com [209.85.219.208]) by mx1.freebsd.org (Postfix) with ESMTP id 114368FC0C for ; Sun, 13 Sep 2009 05:45:05 +0000 (UTC) Received: by ewy4 with SMTP id 4so2246923ewy.36 for ; Sat, 12 Sep 2009 22:45:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=+u8l1bR23rryxc0ZCWElLyoo/7b+kbwILU8ykd8Bt2k=; b=lID/UMVTIHCGTKpEUrFjnbjZvCle/Y9OQbwkc58seOlGEXXrVdMY/nCG48Qh3Sq2cD KzBSY/dgnsux3fg5Ht6cBSlyFEAl5kMwz3uzecoBiNQA1Jt2JOz+uG2EKjgZ7tfMm/n6 2KHeOASt2PmtLVg4Ws2SQNQaY9vDZUage9wZo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=m7sFTlz448V/iCMi4MM0sDrGebzH5ofLYErbOnlBGohqbBbyE2Bin4TaUsdQ+82awb quaRWEqYE4IHXEOYwF41QBQpYCfqafkHj3yBQDO/PnuldjzKd8ZMRx8jWGqfhqiNrCPJ BAhKkIAqaexkHCUlWE8qST9CIL+f9+Tgu2rB8= MIME-Version: 1.0 Received: by 10.216.35.139 with SMTP id u11mr617458wea.176.1252820705004; Sat, 12 Sep 2009 22:45:05 -0700 (PDT) In-Reply-To: <4AA784D9.80405@shapeshifter.se> References: <4AA784D9.80405@shapeshifter.se> Date: Sun, 13 Sep 2009 08:45:04 +0300 Message-ID: <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> From: Marin Atanasov To: freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: VirtualBox network patches for FreeBSD (vboxnetflt + vboxnetadp) 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: Sun, 13 Sep 2009 05:45:06 -0000 Hi, Yesterday I did an upgrade of the Virtualbox port from 3.0.51.r22226 to 3.0.51.r22683. However I tried changing the network settings to Bridge mode and Host only networking, but that doesn't seem to work for me. Are Fredrik's patches included in the latest port of Virtualbox or I still need to apply them manually? Also one more question about the patches - are they supposed to create the bridge interfaces automatically or I need to create them manually first before using them? Regards, Marin On Wed, Sep 9, 2009 at 1:35 PM, Fredrik Lindberg wrote: > Hi > > These patches implement bridge and host only networking on FreeBSD, they > have been tested on FreeBSD 7 and 8 by a few different people. The only > known issue is that they might not work with wireless cards. At least > it didn't work on my iwi-backed wlan0 interface on FreeBSD 8. > > The patches are split into different files for easier overview > > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-netif-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-vboxnetadp-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-vboxnetflt-20090908.patch > http://www.shapeshifter.se/pub/patches/virtualbox/Config.kmk-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/src-VBox-HostDrivers-Makefile.kmk-20090908.patch > > Original code is under the MIT license, patches to Makefiles, etc are > under whatever license you want (I don't claim any copyright over > these). > > > People running FreeBSD and want to test this with the vbox version > 3.0.51.r22226 that currently is in the ports tree needs the following > additional patches. > > > http://www.shapeshifter.se/pub/patches/virtualbox/Config.kmk-r22226-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/virtualbox-port-20090907.patch > http://www.shapeshifter.se/pub/patches/virtualbox/ConsoleImpl2.cpp.patch > > Apply/compile with > cd /usr/ports/emulators/virtualbox > make clean patch > mkdir work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd > mkdir work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetAdp/freebsd > patch < virtualbox-port-20090907.patch > patch -d work/virtualbox-3.0.51r22226/Config.kmk-r22226-20090908.patch > patch -d work/virtualbox-3.0.51r22226/ConsoleImpl2.cpp.patch > patch -d > work/virtualbox-3.0.51r22226/src-VBox-HostDrivers-Makefile.kmk-20090908.patch > patch -d work/virtualbox-3.0.51r22226/vbox-freebsd-netif-20090908.patch > patch -d > work/virtualbox-3.0.51r22226/vbox-freebsd-vboxnetadp-20090908.patch > patch -d > work/virtualbox-3.0.51r22226/vbox-freebsd-vboxnetflt-20090908.patch > make install > > > Fredrik > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to " > freebsd-emulation-unsubscribe@freebsd.org" > -- Marin Atanasov dnaeon AT gmail DOT com daemon AT unix-heaven DOT org