diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-03-20 19:26:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 19:26:40 +0100 |
commit | 2a3ade397b250c5f13470c7be137ea763d216294 (patch) | |
tree | f6fa0f92f040efb00e4ce3d84200f21c9af8b3bd /utils | |
parent | 3a75a46212c044efc423d1833be89c4f144438ec (diff) |
DisneyPlus/Hulu ip lists should be auto-generated (#1905)
Remove two stale ip lists:
1) these 3 ips are in the Amazon ranges (now)...
2) the Instagram list originated from AS32934, which is now a Facebook
AS; see https://github.com/ntop/nDPI/pull/1264/commits/8dabd06301a802dd38616ba8684a1d995783e023
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/asn_update.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/asn_update.sh b/utils/asn_update.sh index 281f27480..86ade7b42 100755 --- a/utils/asn_update.sh +++ b/utils/asn_update.sh @@ -174,6 +174,16 @@ DEST=../src/lib/inc_generated/ndpi_asn_yandex_cloud.c.inc create_list NDPI_PROTOCOL_YANDEX_CLOUD $DEST "AS210656" "AS200350" echo "(3) Yandex Cloud IPs are available in $DEST" +echo "(1) Downloading Disney+..." #Only "Disney Streaming Services" +DEST=../src/lib/inc_generated/ndpi_asn_disney_plus.c.inc +create_list NDPI_PROTOCOL_DISNEYPLUS $DEST "AS400805" "AS398849" "AS22604" "AS11251" +echo "(3) Disney+ IPs are available in $DEST" + +echo "(1) Downloading Hulu..." +DEST=../src/lib/inc_generated/ndpi_asn_hulu.c.inc +create_list NDPI_PROTOCOL_HULU $DEST "AS23286" +echo "(3) Hulu IPs are available in $DEST" + if [ ${TOTAL_ASN} -eq ${FAILED_ASN} ]; then printf '%s: %s\n' "${0}" "All download(s) failed, ./get_routes_by_asn.sh broken?" exit 1 |