sharkjack.sh: check for dynamic route as well

pull/15/head
H8CKR 2020-01-10 00:01:24 +01:00
parent 5681eb2108
commit 7157a6a18a
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ function locate_interface_to_shark() {
while [[ -z $IFACE ]]; do
printf "%s" .
IFACE=$(ip route show to match 172.16.24.1 2>/dev/null| grep -i 172.16.24.1 | cut -d ' ' -f3 | grep -v 172.16.24.1)
if [[ -z $IFACE ]]; then
IFACE=$(ip route show to match 172.16.24.1 2>/dev/null| grep -i 172.16.24.0 | cut -d ' ' -f3 | grep -v 172.16.24.1)
fi
sleep 1
done
echo -e "\n"