Michael Jinks <michael.jinks@xxxxxxxxx> writes: > How do I make a guest use a specific tap? Quoting > from my initial post, my -net options are: > > -net nic -net tap,name=tap11 -net nic -net tap,name=tap12 You want -net nic,vlan=0 -net tap,vlan=0,ifname=tap11 -net nic,vlan=1 -net tap,vlan=1,ifname=tap12 to get the effect that (I think) you're looking for: one nic connected to tap11 using vlan0 and one nic connected to tap12 using vlan1. Without the vlan parameters, everything's on vlan0 so you get two nics and two tap interfaces all connected together inside qemu on a single virtual switch. Best wishes, Chris. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html