How to emulate Internet in multi machine environment with Vagrant
问题 I'm creating a vagrant multi machine configuration file. Here is a chunk: Vagrant.configure(2) do |config| config.vm.box = "chef/centos-7.0" config.vm.define "radius" do |radius| radius.vm.hostname = "radius-server" end config.vm.define "mysql" do |mysql| mysql.vm.hostname = "mysql-server" end end how can I emulate the situation in which the above two virtual machines are in different networks separated by Internet? I could create two different private networks having two different private ip