-
Notifications
You must be signed in to change notification settings - Fork 21
feat: Allow specifying vmnet network UUID to disable DHCP (on vmnet.h… #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…ost network only) This commit introduces a new `--vmnet-network-uuid` command-line option to allow setting the `vmnet_network_identifier_key` for vmnet. This property is only applicable to a vmnet_interface in VMNET_HOST_MODE. If this property is set, the vmnet_interface is added to an isolated network with the specified identifier. No DHCP service is provided on this network. This is useful for certain applications where the users need an isolated network and are running their own dhcp to assign IPs in such network. See issue [lima-vm#139](lima-vm#139) Signed-off-by: Angelo Failla <pallotron@gmail.com>
1d3ead9
to
88d975d
Compare
Signed-off-by: Angelo Failla <pallotron@gmail.com>
Signed-off-by: Angelo Failla <pallotron@gmail.com>
Signed-off-by: Angelo Failla <pallotron@gmail.com>
Signed-off-by: Angelo Failla <pallotron@gmail.com>
`socket_vmnet` was forked from [`vde_vmnet`](https://github.com/lima-vm/vde_vmnet) v0.6.0. | ||
Unlike `vde_vmnet`, `socket_vmnet` does not depend on VDE. | ||
|
||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is just formatting, vscode ran this as I saved the file to update the TOC
|
||
> [!TIP] | ||
> `sudo make install` is also available in addition to `sudo make install.bin`. | ||
> [!TIP] > `sudo make install` is also available in addition to `sudo make install.bin`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same, this is just formatting, vscode ran this as I saved the file to update the TOC
This commit introduces a new
--vmnet-network-uuid
command-line option to allow setting thevmnet_network_identifier_key
for vmnet.This property is only applicable to a vmnet_interface in
VMNET_HOST_MODE
.If this property is set, the vmnet_interface is added to an isolated network with the specified identifier.
No DHCP service is provided on this network.
This is useful for certain applications where the users need an isolated network and are running their own dhcp to assign IPs in such network.
See issue #139