kola/qemuexec: allow changing guest network #3645
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is useful when you're nesting VMs and you want the first VM to
be able to access the host. The default host address that QEMU assigns
(e.g. 10.0.2.2, modifiable via the
host=...
netdev knob) doesn'talways work because it's not actually an IP address owned by the host,
but proxied by QEMU itself.
So the source appears to come from localhost, but in some contexts (e.g.
iSCSI), we need the host and the guest to agree that the same IP refers
to the host.
With this, one can start the first VM as usual (e.g.
cosa run
) and thesecond VM within with e.g.
cosa run --usernet-addr 10.0.3.0/24
and beable to talk back to the outer VM via the valid address 10.0.2.15.
To be clear, this can all be done with passthrough QEMU args, so this is
just about making it more convenient.