Get last IP for selected interface

This commit is contained in:
Dan Schaper 2015-12-06 00:30:16 -08:00
parent d8034f4156
commit d068593582
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ if [[ -f $piholeIPfile ]];then
else
# Otherwise, the IP address can be taken directly from the machine, which will happen when the script is run by the user and not the installation script
IPv4dev=$(ip route get 8.8.8.8 | awk '{print $5}')
piholeIPCIDR=$(ip -o -f inet addr show dev $IPv4dev | awk '{print $4}') | sed -n '$p'
piholeIPCIDR=$(ip -o -f inet addr show dev $IPv4dev | awk '{print $4}') | awk 'END {print}')
piholeIP=${piholeIPCIDR%/*}
fi