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
nics: Allow managing source mode of directly attached network interfaces
Virtual functions from SR-IOV devices might require "passthrough" to
work, so let's surface the mode property of directly attached devices
fully.
See https://issues.redhat.com/browse/RHEL-88407
detailHeadline: _("This is the recommended config for general guest connectivity on hosts with static wired networking configs."),
94
+
detailHeadline: _("This is the recommended type for general guest connectivity on hosts with static wired networking configs."),
96
95
detailParagraph: _("Provides a bridge from the guest virtual machine directly onto the LAN. This needs a bridge device on the host with one or more physical NICs.")
97
96
},
98
97
{
99
98
name: 'direct',
100
99
desc: 'Direct attachment',
101
-
detailHeadline: _("This is the recommended config for high performance or enhanced security."),
102
-
detailParagraph: _("In the default 'vepa' mode, switching is offloaded to the external switch. If the switch is not VEPA-capable, communication between guest virtual machines, or between a guests and the host is not possible."),
{_("All VMs' packets are sent to the external bridge. Packets whose destination is a VM on the same host as where the packet originates from are sent back to the host by the VEPA capable bridge (today's bridges are typically not VEPA capable)")}.
204
+
</Content>
205
+
<Contentcomponent={ContentVariants.h4}>
206
+
{_("Bridge")}
207
+
</Content>
208
+
<Contentcomponent={ContentVariants.p}>
209
+
{_("Packets whose destination is on the same host as where they originate from are directly delivered to the target macvtap device. Both origin and destination devices need to be in bridge mode for direct delivery. If either one of them is in \"VEPA\" mode, a VEPA capable bridge is required.")}
210
+
</Content>
211
+
<Contentcomponent={ContentVariants.h4}>
212
+
{_("Private")}
213
+
</Content>
214
+
<Contentcomponent={ContentVariants.p}>
215
+
{_("All packets are sent to the external bridge and will only be delivered to a target VM on the same host if they are sent through an external router or gateway and that device sends them back to the host. This procedure is followed if either the source or destination device is in \"Private\" mode.")}
216
+
</Content>
217
+
<Contentcomponent={ContentVariants.h4}>
218
+
{_("Passthrough")}
219
+
</Content>
220
+
<Contentcomponent={ContentVariants.p}>
221
+
{_("This feature attaches a virtual function of a SRIOV capable NIC directly to a VM without losing the migration capability. All packets are sent to the VF/IF of the configured network device. Depending on the capabilities of the device additional prerequisites or limitations may apply.")}
0 commit comments