You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to #2385, it is possible to use user mode networking in the advanced options to access host files from a qemu VM. For details using -nic user,... / -netdev user,... see https://www.qemu.org/docs/master/system/invocation.html#hxtool-5. Problematic are the options tftp, bootfile, smb and perhaps guestfwd.
I can think of three ways to block that:
Block the -nic and -netdev options. The normal way for configuring networking should be good enough, there should be no need to use the advanced options for that.
Block options starting with "user," to block only user mode networking.
Block options starting with "user," and additionally containing ",tftp=", ",bootfile=", ",smb=" or ",guestfwd=".
I would prefer the last option as this will have the least impact. Alternatively the first option is the easiest one to implement.
The text was updated successfully, but these errors were encountered:
Similar to #2385, it is possible to use user mode networking in the advanced options to access host files from a qemu VM. For details using
-nic user,...
/-netdev user,...
see https://www.qemu.org/docs/master/system/invocation.html#hxtool-5. Problematic are the optionstftp
,bootfile
,smb
and perhapsguestfwd
.I can think of three ways to block that:
-nic
and-netdev
options. The normal way for configuring networking should be good enough, there should be no need to use the advanced options for that.I would prefer the last option as this will have the least impact. Alternatively the first option is the easiest one to implement.
The text was updated successfully, but these errors were encountered: