mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Merge pull request #1151 from pi-hole/fix/CIDR
Include CIDR notation for IPv4 non-natural blocks.
This commit is contained in:
commit
cef0211c00
1 changed files with 2 additions and 1 deletions
|
@ -173,7 +173,8 @@ find_IPv4_information() {
|
||||||
# Find IP used to route to outside world
|
# Find IP used to route to outside world
|
||||||
route=$(ip route get 8.8.8.8)
|
route=$(ip route get 8.8.8.8)
|
||||||
IPv4dev=$(awk '{for (i=1; i<=NF; i++) if ($i~/dev/) print $(i+1)}' <<< "${route}")
|
IPv4dev=$(awk '{for (i=1; i<=NF; i++) if ($i~/dev/) print $(i+1)}' <<< "${route}")
|
||||||
IPV4_ADDRESS=$(awk '{print $7}' <<< "${route}")
|
IPv4bare=$(awk '{print $7}' <<< "${route}")
|
||||||
|
IPV4_ADDRESS=$(ip -o -f inet addr show | grep "${IPv4bare}" | awk '{print $4}' | awk 'END {print}')
|
||||||
IPv4gw=$(awk '{print $3}' <<< "${route}")
|
IPv4gw=$(awk '{print $3}' <<< "${route}")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue