Is there a simple way to route network traffic between two VMs, one in virtualbox and the other in KVM/libvirt?
In the KVM World, I can see the virbr
interfaces (Virtual Bridges?) and they have an IP assigned:
virbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether fe:32:01:44:a9:c5 brd ff:ff:ff:ff:ff:ff
inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
valid_lft forever preferred_lft forever
But the Virtualbox interfaces doesn't have an IP assigned
vboxnet0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff
The IPs of the VMs:
- KVM_VM: 192.168.122.101
- VBox_VM: 192.168.56.101
What do you think are the options?