<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Microsoft-Vista on despatches</title><link>https://icle.es/tags/microsoft-vista/</link><description>Recent content in Microsoft-Vista on despatches</description><generator>Hugo</generator><language>en</language><lastBuildDate>Fri, 20 Jun 2025 09:25:00 +0100</lastBuildDate><atom:link href="https://icle.es/tags/microsoft-vista/index.xml" rel="self" type="application/rss+xml"/><item><title>Vista Guest, Linux Host, VirtualBox, Host Networking - Bridge</title><link>https://icle.es/2009/03/23/vista-guest-linux-host-virtualbox-host-networking-bridge/</link><pubDate>Mon, 23 Mar 2009 15:39:41 +0000</pubDate><guid>https://icle.es/2009/03/23/vista-guest-linux-host-virtualbox-host-networking-bridge/</guid><description>&lt;p>One would think that it would be straightforward, work off the bat, or at least
have some reasonable documentation. Unfortunately, no!&lt;/p>
&lt;p>I needed host networking to be able to access network resources (Samba shares
etc.) which does not work if the guest OS is on NAT :-(&lt;/p>
&lt;p>Solving it was easy though&amp;hellip; I assume Vista is installed as a guest with the
guest additions and that your user account is a part of the vboxusers group.&lt;/p></description><content:encoded><![CDATA[<p>One would think that it would be straightforward, work off the bat, or at least
have some reasonable documentation. Unfortunately, no!</p>
<p>I needed host networking to be able to access network resources (Samba shares
etc.) which does not work if the guest OS is on NAT :-(</p>
<p>Solving it was easy though&hellip; I assume Vista is installed as a guest with the
guest additions and that your user account is a part of the vboxusers group.</p>
<p>On the linux host, first install bridge utils. I run Ubuntu, so it was as easy
as:</p>
```bash
$ sudo aptitude install bridge-utils
```
<p>Next, you need to set up the bridge; again, easy on Ubuntu:</p>
<p>add the following section to /etc/network/interfaces</p>
```
auto br0
iface br0 inet dhcp
bridge_ports eth1
```
<p>Add the interfaces to VirtualBox</p>
```bash
$ sudo VBoxAddIF vbox0 'shri' br0
```
<p>Within the VirtualBox Guest settings, choose Host Networking and fo the
interface, choose br0</p>
<p>bring the interface up:</p>
```
$ sudo ifup br0
```
<p>and start your guest os&hellip; et voila, it just works&hellip;</p>
]]></content:encoded></item></channel></rss>