diff options
-rw-r--r-- | src/connections/ethernet | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connections/ethernet b/src/connections/ethernet index 49dfa4c..1c527ee 100644 --- a/src/connections/ethernet +++ b/src/connections/ethernet @@ -181,8 +181,8 @@ ethernet_up() { done fi if [[ -n "$GATEWAY6" ]]; then - report_debug ethernet_iproute_up ip -6 route add default via "$GATEWAY6" dev "$INTERFACE" - if ! ip -6 route add default via "$GATEWAY6" dev "$INTERFACE"; then + report_debug ethernet_iproute_up ip -6 route replace default via "$GATEWAY6" dev "$INTERFACE" + if ! ip -6 route replace default via "$GATEWAY6" dev "$INTERFACE"; then report_iproute "Adding gateway $GATEWAY6 failed" fi fi |