From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M9p4J-00065f-II for qemu-devel@nongnu.org; Thu, 28 May 2009 19:31:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M9p4F-00065L-OU for qemu-devel@nongnu.org; Thu, 28 May 2009 19:31:27 -0400 Received: from [199.232.76.173] (port=38973 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M9p4F-00065I-ML for qemu-devel@nongnu.org; Thu, 28 May 2009 19:31:23 -0400 Received: from main.gmane.org ([80.91.229.2]:53941 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M9p4F-0002eV-7Y for qemu-devel@nongnu.org; Thu, 28 May 2009 19:31:23 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1M9p4A-00006h-3n for qemu-devel@nongnu.org; Thu, 28 May 2009 23:31:18 +0000 Received: from 143.166.197.6 ([143.166.197.6]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 May 2009 23:31:18 +0000 Received: from Charles_Duffy by 143.166.197.6 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 May 2009 23:31:18 +0000 From: Charles Duffy Date: Thu, 28 May 2009 18:31:17 -0500 Message-ID: References: <4A1EF2C3.40001@iem.pw.edu.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit In-Reply-To: <4A1EF2C3.40001@iem.pw.edu.pl> Sender: news Subject: [Qemu-devel] Re: Connecting two tap interfaces to one qemu instance List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Jedrzej Kalinowski wrote: > Hello, > > I've found a problem when trying to run one qemu instance with two tap > devices connected to a bridge. > > I mean a commandline like this: > qemu -net nic -net tap -net nic -net tap ... Do this instead: qemu -net nic,vlan=0 -net tap,vlan=0 -net nic,vlan=1 -net tap,vlan=1 ...