Using multiple network cards in XEN 3.0
you need 2 bridge interfaces: xenbr0 = eth0 xenbr1 = eth1 create a new script with the following lines: (ex: multiplebridge.sh) in /etc/xen/scripts/ #!/bin/sh dir=$(dirname «$0») «$dir/network-bridge» «$@» vifnum=0 netdev=eth0 bridge=xenbr0 «$dir/network-bridge» «$@» vifnum=1 netdev=eth1 bridge=xenbr1 make the script executable (chmod +x /etc/xen/scripts/multiplebridge.sh) modify /etc/xen/xend-config.sxp change the line: (network-script network-bridge) to (network-script multiplebridge.sh) modify your… Leer más »