WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

[Xen-users] Fedora 7 - missing dummy interfaces

To: xen-users@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-users] Fedora 7 - missing dummy interfaces
From: "David Mueller" <dsm717@xxxxxxxxx>
Date: Mon, 16 Jul 2007 12:05:22 -0700
Delivery-date: Tue, 17 Jul 2007 04:58:16 -0700
Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tepmWQmbO8IKWmNaclWg8NpM/STi74nvTtek6DvyNw+uvmbB3Yuu3BuhNaqZibEvIVFPtpjYbbwsCEhwpcPDq4Zck+M2PN2adEABEtdyU+xSu8wzsdxW4x0GVZZQBY8Y/ICQ7mDALE3FM0UL7OBeOhVk7y4DZoPNiEq1dN9N86Q=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=abWCGoMXpnnngwxWeIWnCVVkwagxNdf+s09lNhCEprKfuALxvBWzQG4Gcc7wcut8bkMe4lG9R3o62VfCiXIWYcA87hM5Af0S11TDXoV4ZvE48EnWiS9LPvFz3JD52LjbwStqq/d7sRC2Qa4qM+l+Wy30z/+2D8ZUC7c0IRfWtms=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
I'm trying to move from Fedora Core 5 to Fedora 7.  I've run into an
issue where the xen guests, which need several bridged interfaces
bound to dummy devices, won't boot.  I think I've traced the problem
to a lack of the dummy1, dummy2, and dummy3 devices, and I'm not sure
how to fix it.  What I'll describe below is the setup that worked in
Fedora Core 5:

I used the following custom network-bridge script:

#!/bin/sh
dir=$(dirname "$0")
"$dir/network-bridge" "$@" vifnum=0 netdev=dummy0
"$dir/network-bridge" "$@" vifnum=1 netdev=dummy1
"$dir/network-bridge" "$@" vifnum=2 netdev=dummy2
"$dir/network-bridge" "$@" vifnum=3 netdev=dummy3

And the following line was used in the .xen files passed to xm create:

vif = ['mac=2E:22:22:22:22:20,bridge=xenbr1',
'mac=2E:22:22:22:22:21,bridge=xenbr2',
'mac=2E:22:22:22:22:22,bridge=xenbr3']

Running the script resulted in the following:

Using config file "./guest1.xen".
Error: Device 0 (vif) could not be connected. Could not find bridge
device xenbr1

If I try to run the custom network-bridge script manually passing the
"start" command I get several errors:

Device "dummy1" does not exist.
usage: ifdown <device name>
Device "dummy1" does not exist.
Cannot find device "dummy1"
SIOCGIFFLAGS: No such device
Device "dummy2" does not exist.
usage: ifdown <device name>
Device "dummy2" does not exist.
Cannot find device "dummy2"
SIOCGIFFLAGS: No such device
Device "dummy3" does not exist.
usage: ifdown <device name>
Device "dummy3" does not exist.
Cannot find device "dummy3"
SIOCGIFFLAGS: No such device

Any ideas on how to get this working would be greatly appreciated.

- David

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-users] Fedora 7 - missing dummy interfaces, David Mueller <=