[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.