From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BQRLi-0004AV-QS for qemu-devel@nongnu.org; Wed, 19 May 2004 09:43:11 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BQRLB-00043m-Sd for qemu-devel@nongnu.org; Wed, 19 May 2004 09:43:09 -0400 Received: from [66.54.152.27] (helo=jive.SoftHome.net) by monty-python.gnu.org with smtp (Exim 4.34) id 1BQRLA-00042m-9E for qemu-devel@nongnu.org; Wed, 19 May 2004 09:42:36 -0400 From: Mulyadi Santosa Subject: Re: Re: [Qemu-devel] problems: running two instance of Qemu with same MAC address Date: Wed, 19 May 2004 20:41:42 +0700 References: <200405191532.45135.a_mulyadi@softhome.net> In-Reply-To: <200405191532.45135.a_mulyadi@softhome.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200405192041.42610.a_mulyadi@softhome.net> Reply-To: a_mulyadi@softhome.net, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hello all After doing adventure, i got the answer. The key is using Ethernet Bridge method . You need to compile the kernel with Ethernet bridge module if u don't have it yet. First install bridge-utils package ( if your distro doesn't include it, find it here http://www.math.leidenuniv.nl/~buytenh/bridge).On my RH 9, the bridge utils comes with short HOWTO, so you can learn more about it. Then modprobe bridge module. The rest steps are: 1. create bridge interface, eg br0 --> brctl addbr br0 2. include tun0 and tun1 into br0 -- > brctl addif tun0 & brctl addif tun1 3. assign IP address into br0 and turn it on 4. for each guest, set the br0 IP as default gateway 5. On the host, add new routing toward these two guests using br0 read have fun and thanx for the all the help. Now I just need to figure out what is blocking process migration on my new virtual openMosix cluster :-)) regards Mulyadi