From 1b0bf5a0d34cb7fdebcafd689d48863146cf314c Mon Sep 17 00:00:00 2001 From: William Wernert Date: Fri, 31 May 2019 16:37:10 -0400 Subject: [PATCH] Fixed issues around ipv4/v6 flags being set incorrectly --- so-setup-network.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/so-setup-network.sh b/so-setup-network.sh index f3c083e82..f4004477f 100644 --- a/so-setup-network.sh +++ b/so-setup-network.sh @@ -258,7 +258,7 @@ create_bond_nmcli() { bond.options "mode=0" \ 802-3-ethernet.mtu $MTU \ ipv4.method "disabled" \ - ipv6.method "disabled" \ + ipv6.method "ignore" \ connection.autoconnect "yes" \ >> ~/sosetup.log 2>&1 @@ -267,10 +267,8 @@ create_bond_nmcli() { BONDNIC="$(echo -e "${BNIC}" | tr -d '"')" # Create the slave interface and assign it to the bond nmcli con add type ethernet ifname $BONDNIC master bond0 \ - connection.autoconnect yes \ + connection.autoconnect "yes" \ 802-3-ethernet.mtu $MTU \ - ipv4.method "disabled" \ - ipv6.method "disabled" \ con-name "bond0-slave-$BONDNIC" \ >> ~/sosetup.log 2>&1 # Bring the slave interface up