diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-10-26 20:15:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-26 20:15:44 +0200 |
commit | 611c3b66f0db3ca113db6fb71534231bb87b4cef (patch) | |
tree | 0dc777ffbf5a52e64b248b99b38620680d2a01d8 /utils/google_cloud_ip_addresses_download.sh | |
parent | 1832d247b39e24ac7cc1b8417ca076bd61ae9c6e (diff) |
ipv6: add support for ipv6 addresses lists (#2113)
Diffstat (limited to 'utils/google_cloud_ip_addresses_download.sh')
-rwxr-xr-x | utils/google_cloud_ip_addresses_download.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/google_cloud_ip_addresses_download.sh b/utils/google_cloud_ip_addresses_download.sh index 02a270e53..d2efb2dcb 100755 --- a/utils/google_cloud_ip_addresses_download.sh +++ b/utils/google_cloud_ip_addresses_download.sh @@ -8,6 +8,7 @@ cd "$(dirname "${0}")" || exit 1 DEST=../src/lib/inc_generated/ndpi_google_cloud_match.c.inc TMP=/tmp/google_c.json LIST=/tmp/google_c.list +LIST6=/tmp/google_c.list6 ORIGIN="https://www.gstatic.com/ipranges/cloud.json" @@ -19,9 +20,11 @@ if [ "$http_response" != "200" ]; then fi echo "(2) Processing IP addresses..." -jq -r '.prefixes | .[].ipv4Prefix | select( . != null )' $TMP > $LIST # TODO: ipv6 -./ipaddr2list.py $LIST NDPI_PROTOCOL_GOOGLE_CLOUD > $DEST -rm -f $TMP $LIST +jq -r '.prefixes | .[].ipv4Prefix | select( . != null )' $TMP > $LIST +jq -r '.prefixes | .[].ipv6Prefix | select( . != null )' $TMP > $LIST6 +./ipaddr2list.py $LIST NDPI_PROTOCOL_GOOGLE_CLOUD $LIST6 > $DEST + +rm -f $TMP $LIST $LIST6 echo "(3) Google Cloud IPs are available in $DEST" exit 0 |