Get the IP address that is the source for the default route out. Fixes interfaces with multiple IP's assigned getting the wrong IPv4 chosen.

Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
pull/1037/head
Dan Schaper 8 years ago
parent ffd31d8330
commit c2b8bed3a8
No known key found for this signature in database
GPG Key ID: 572E999E385B7BFC

@ -182,7 +182,7 @@ getGitFiles() {
find_IPv4_information() {
# Find IP used to route to outside world
IPv4dev=$(ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/dev/)print $(i+1)}')
IPV4_ADDRESS=$(ip -o -f inet addr show dev "$IPv4dev" | awk '{print $4}' | awk 'END {print}')
IPV4_ADDRESS=$(ip route get 8.8.8.8| awk '{print $7}')
IPv4gw=$(ip route get 8.8.8.8 | awk '{print $3}')
}

Loading…
Cancel
Save