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

Re: [Xen-users] Xen Installation without virtualization enabled in Bios

s@l wrote:
[...]

Note the (network-script multi-network-bridge)

the script multi-network-bridge is as follows:

"
#!/bin/sh
dir=$(dirname "$0")
"$dir/network-bridge" "$@" vifnum=0 netdev=eth0
"$dir/network-bridge" "$@" vifnum=1 netdev=eth1
"

I think I made pretty much the same customization as you did to the bridge script. Mine looks like this and works for me:

#!/bin/bash
DEVICES="eth0 eth1"
for DEV in $DEVICES; do
  /etc/xen/scripts/network-bridge $@ netdev=$DEV
  if [ "$1" = "start" ]; then
    ip link set $DEV up
  fi
done




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