Displaying 1 result from an estimated 1 matches for "qemu_up".
Did you mean:
qemu_uri
2006 Aug 21
0
Anyone gotten qemu to operate in bride network mode on centos 4
I have been asking on the qemu list how to get bridge network mode
working under centos 4... To no avail.
The following script is what I have tried as my /etc/qemu-ifup. It
supposedly worked for fedora.
#!/bin/sh
#
# qemu_up
#
# script to bring up the tun device in QEMU in bridged mode
#
# This script bridges eth0 and tap0. First take eth0 down, then bring it up with IP 0.0.0.0
#
/sbin/ifdown eth0
/sbin/ifconfig eth0 0.0.0.0 up
#
# Bring up tap0 with IP 0.0.0.0, create bridge br0 and add interfaces eth0 and tap0
#
/sbi...