summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren 'Tadgy' Austin <darren@afterdark.org.uk>2018-07-28 01:35:00 +0100
committerRobby Workman <rworkman@slackware.com>2018-11-25 19:04:32 -0600
commit7dd411ec718e48c43f32c8c5fc40c4e6b104817f (patch)
treef85d1724b64d5ea730e3732423bc272035ae489b
parent8bbd1ebfac4271051929fa167f57e2a344aa9bc6 (diff)
downloadslacknetsetup-7dd411ec718e48c43f32c8c5fc40c4e6b104817f.tar.xz
Consider SLAAC IPs when determining interface up status
Signed-off-by: Robby Workman <rworkman@slackware.com>
-rw-r--r--rc.inet12
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.inet1 b/rc.inet1
index acb3a2f..68d2625 100644
--- a/rc.inet1
+++ b/rc.inet1
@@ -155,7 +155,7 @@ if_up() {
fi
fi
if [ -e /sys/class/net/${1%%:*} ]; then # interface exists
- if ! /sbin/ip address show permanent scope global dev ${1} 2>/dev/null | grep -Ewq '(inet|inet6)' || \
+ if ! /sbin/ip address show scope global dev ${1} 2>/dev/null | grep -Ewq '(inet|inet6)' || \
! /sbin/ip link show dev ${1} | grep -wq "state UP" ; then # interface not up or not configured
if [ -n "${HWADDR[$i]}" ]; then # Set hardware address _before_ the interface goes up:
echo "/etc/rc.d/rc.inet1: /sbin/ip link set dev ${1} address ${HWADDR[$i]}" | $LOGGER