Linux – How to connect a virtual NIC in one QEMU-KVM instance to a virtual NIC in another QEMU-KVM instance without a bridge

kvm-virtualizationlinuxqemutap

Is there a way to connect a Virtual NIC one QEMU-KVM instance to a Virtual NIC on another QEMU-KVM instance. I want to be able to do this efficiently and it may be possible that the 2 instances could be on local or remote machines.

I understand the use of TAP interfaces tied a bridge. But I am trying to create point to point connections between Virtual NICs in different QEMU-KVM instances

Best Answer

Qemu simply maps the v-NIC to a tap, whatever you plug the tap into is up to you. Bridge is the obvious choice, but there's also openvswitch, for example.

Related Topic