-
|
Each time vmnet-helper is started, it creates a new bridge interface with an associated subnet. Do I just reuse the file descriptor or socket file for all VMs which I want to have in the same network or do I need to do some extra work here? On the other hand, the output configuration always has one MAC address for one particular guest. So I'm not really sure how to obtain config for subsequent guests on the same network. Sorry if this sounds like a newbie question. :) EDIT: I am mainly interested in the shared operation mode. EDIT2: Do I need vmnet-broker for this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
|
vmnet-helper is per vm - each vm need a helper program to forward packets between the vm file descriptor and the vmnet-interface. The architecture is: Usually you will see a new bridge (e.g. bridge100) with 3 members (vmnet0, vmnet1, vmnet2). VMs communicate via the vmnet network (192.168.105.0/24). vmnet-helper is not a switch, it is a cable connecting the VM process to the vmnet network. All modes work int same way. The difference are:
|
Beta Was this translation helpful? Give feedback.
-
|
@nohajc feel free to review #167. I hope it makes things more clear. |
Beta Was this translation helpful? Give feedback.
Yes, all vms started with same --start-address, --end-address, and --subnet-mask are sharing the network (default 192.168.105.0/24) using bridge (typically bridge100).
Yes, every…