diff --git a/setup/so-functions b/setup/so-functions index 4410e7443..4bb6289b0 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1223,7 +1223,7 @@ filter_unused_nics() { fi # Finally, set filtered_nics to any NICs we aren't using (and ignore interfaces that aren't of use) - filtered_nics=$(ip link | awk -F: '$0 !~ "lo|vir|veth|br|docker|tun|wg|wl|^[^0-9]"{print $2}' | grep -vwe "$grep_string" | sed 's/ //g') + filtered_nics=$(ip link | awk -F: '$0 !~ "lo|vir|veth|br|docker|wl|^[^0-9]"{print $2}' | grep -vwe "$grep_string" | sed 's/ //g') readarray -t filtered_nics <<< "$filtered_nics" nic_list=() @@ -1712,8 +1712,8 @@ network_setup() { echo "... Verifying all network devices are managed by Network Manager"; check_network_manager_conf; - echo "... Disabling unused NICs"; - disable_misc_network_features; + #echo "... Disabling unused NICs"; + #disable_misc_network_features; echo "... Setting ONBOOT for management interface"; command -v netplan &> /dev/null || nmcli con mod "$MNIC" connection.autoconnect "yes"