Repetitive `ip route get` was resetting counts.

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

@ -168,10 +168,13 @@ getGitFiles() {
}
find_IPv4_information() {
local route
# 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 route get 8.8.8.8| awk '{print $7}')
IPv4gw=$(ip route get 8.8.8.8 | awk '{print $3}')
route=$(ip route get 8.8.8.8)
IPv4dev=$(awk '{for (i=1; i<=NF; i++) if ($i~/dev/) print $(i+1)}' <<< "${route}")
IPV4_ADDRESS=$(awk '{print $7}' <<< "${route}")
IPv4gw=$(awk '{print $3}' <<< "${route}")
}
get_available_interfaces() {

Loading…
Cancel
Save