added restartinterface script & renamed tbind w/o suffix

This commit is contained in:
2024-11-06 14:27:03 +01:00
parent 08c1f75051
commit 379b149a48
2 changed files with 18 additions and 0 deletions

18
scripts/rinterface Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
# Loop through each hardware port and device pair
networksetup -listallhardwareports | awk '
/^Hardware Port:/ {interface_name=$3; for(i=4;i<=NF;i++){interface_name=interface_name" "$i}}
/^Device:/ {print interface_name, $2}' | \
while read interface_name interface; do
# Get the IP address for the current interface
ip=$(ipconfig getifaddr "$interface" 2>/dev/null)
if [ -n "$ip" ]; then
echo "restarting interface $interface ($interface_name)"
# Disable and enable network service by hardware port name
networksetup -setnetworkserviceenabled "$interface_name" off
networksetup -setnetworkserviceenabled "$interface_name" on
fi
done