Sunday, 2 June 2019

networking - How to connect two virtual machines with accessible private IP address


I am trying to have some VMs on two Ubuntu hosts using KVM (two seperate machines).


I want all these VMs to be accessible with their private IPs (or public IPs). I know the local IPs of the VMs can not be used since they are behind NAT. Kindly let me know the simplest options and requirements for this purpose.


To be more specific:




  1. How they should be physically connected (a cable, a hub, a router, etc..)? The two machines are currently connected to a WIFI router. But since WIFI routers are sometimes busy and have high latency, I am looking for a better option.




  2. How should the virtual machines be configured, so their IP addresses would be visible to others?




Thanks.



Answer




How should they be physically connected?



If the distance is not too great and you don't have many machines in your local network (e.g. it's only those 2 Ubuntu hosts), then your option would be to directly connect the 2 Ubuntu hosts to the router via an UTP cable (Ubuntu host 1 is connected to the Router via a cable, Ubuntu host 2 is connected to the Router via a cable as well). By using direct cable connection you'll avoid the higher latencies that WiFi has.


However, if the distance is too great and you have more machines that need a direct connection, then you can use a switch. The switch has to be connected via one of its ports to the router, and then you connect your machines to the other ports of the switch.



How should the IP addresses of the virtual machines be visible to other VMs/hosts?



Configure Public bridge networking for your virtual machines. This will assign them IP addresses in your local network, so you can access them via your host or other virtual machines that are configured in the same way.


See How to configure Public Bridge @ KVM Networking for a detailed guide on how to achieve that.


You can also check this article from VMware which explains what bridging is.


Note: If you want only the VMs to be able to access each other, and not access them from other hosts, you can use Private bridge configuration, which will setup a local network only for the virtual machines, so they will be in a seperate network.


No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...