2020-04-28 00:17:03 +00:00
|
|
|
#!/bin/ash
|
2023-04-12 21:37:30 -06:00
|
|
|
echo "Route down: \$SUBNET weight \$WEIGHT via \$NODE (\$REMOTEADDRESS:\$REMOTEPORT)"
|
2023-04-12 22:49:10 -06:00
|
|
|
nonMACChars=`echo \$SUBNET | tr -d "[:digit:]" | tr -d [:ABCDEFabcdef]`
|
|
|
|
macFile="/tmp/tinc_peer_mac_\$NODE"
|
|
|
|
if [ -z "\$nonMACChars" ]; then
|
|
|
|
# This subnet is a MAC
|
|
|
|
if test -f "\$macFile"; then
|
|
|
|
rm \$macFile
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if echo "\$SUBNET" | grep -q -E ".+/32\$"; then
|
|
|
|
# This subnet is likely an IP address, remove it from the ARP table
|
|
|
|
address=`echo "\$SUBNET" | cut -d '/' -f 1`
|
|
|
|
echo "Unmapping \$address <=> \$mac from ARP table"
|
2023-04-12 23:02:05 -06:00
|
|
|
arp -d "\$address"
|
2023-04-12 22:49:10 -06:00
|
|
|
fi
|
|
|
|
fi
|