From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: Enabling networking at domU (xen on arndale) Date: Mon, 8 Apr 2013 11:39:48 +0100 Message-ID: <51629E74.2010803@citrix.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Sengul Thomas Cc: Xen Devel List-Id: xen-devel@lists.xenproject.org On 04/08/2013 09:57 AM, Sengul Thomas wrote: > Hello, Hello, > I am trying to enable networking at domU in xen on arndale, and my > first goal is to run network-backend at dom0. > > While I was doing this, I noticed network-backend driver tries to find > a device from xenbus, and xenbus reads device info from xenstore. > However, xenstore does not contain virtual interface (vif) as backend > device at the moment: > > root@localhost:~# xenstore-ls /local/domain/0/backend | grep -v "^ " > console = "" > vbd = "" > > Now, I'm stuck and could you tell me how to add vif into xenstored > (backend directory)? > If you use xl to start you domU, you just need to add in your configuration file something like: vif = [ 'bridge=xenbr0' ] Where xenbr0 is a bridge with eth0 inside. Then, xl will automatically create the backend directory in xenstore. Cheers, Julien