Skip to content
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

Prevent bonding issue by removing extra network interface from bridge_ports on sle12 autoyast #19726

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,8 @@
<bootproto>dhcp</bootproto>
<bridge>yes</bridge>
<bridge_forwarddelay>15</bridge_forwarddelay>
<!-- Use specified interface instead of a list to avoid ip lease inconsistency. Please refer to poo#135641. -->
% if ($check_var->('SUT_NETDEVICE', 'eth1') or $check_var->('SUT_NETDEVICE', 'em1')) {
<bridge_ports><%= $get_var->('SUT_NETDEVICE') %></bridge_ports>
% } else {
<bridge_ports>eth0 eth1 em1 em2</bridge_ports>
% }
<!-- Use specified interface instead of a list to avoid bonding issues which act as router and created illegal duplicate traffic for gateway of its subnet. -->
<bridge_ports><%= $get_var->('BRIDGE_PORT', 'eth0') %></bridge_ports>
alice-suse marked this conversation as resolved.
Show resolved Hide resolved
<!-- Turn bridge_stp off to unblock autoyast installation. Please refer to bsc#1222105 -->
<bridge_stp>off</bridge_stp>
<startmode>auto</startmode>
Expand Down
Loading