|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] no bridge is shown by ifconfig on Xen Debian
Hello,
> On Sun, Apr 11, 2010 at 8:09 AM, chris <tknchris@xxxxxxxxx> wrote:
> > I agree with Grant, the mystery is solved.
> Well it is not a mystery upto this point I am also clear that this is
> happening what you and Grant Said.
>
> >It is just that some of the
> > docs are a bit dated.
> I can not comment on this since I am following what ever the docs are saying.
>
For naming "correctly" (as I want it to be) and to be compatible with an
OpenSuse 11.2 machine I use the following script to have my two Nics
named as on the Opensuse.
#!/bin/bash
#
cd /etc/xen/scripts
case "$1" in
start) ./network-bridge start bridge=br0 netdev=eth0
./network-bridge start bridge=br1 netdev=eth1
;;
stop) ./network-bridge stop bridge=br0 netdev=eth0
./network-bridge stop bridge=br1 netdev=eth1
;;
*) echo 'No or incorrect action ('$1')'
exit
esac
/usr/sbin/brctl show
Regards
JPP
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|