Creating an isolated network

NoahO

Bit poster
Hi,
I'm trying to create an isolated network to connect my vagrant VM to, using config.vm.provider "parallels" do |v| v.customize format.
I'm testing it first with prlsrvctl like this:
prlsrvctl net add isolated1 --dhcp-server off --dhcp6-server off -t host-only

  1. It doesn't seem to disable DHCP, does anyone know why? If I run again with prlsrvnet set, it does
  2. How do I disable "Connect Mac to this network"? I want the mac to be isolated from the VM.
Thanks,
Noah
 
> It doesn't seem to disable DHCP, does anyone know why? If I run again with prlsrvnet set, it does
You mean that DHCP is not disabled on the network creation ("add" command) but actually disabled only on the consequent reconfiguration ("set" command)?

> How do I disable "Connect Mac to this network"? I want the mac to be isolated from the VM.
What do you really mean? net set <vnetwork_id> --connect-host-to-net off doesn't work?
 
Back
Top