mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-02 00:40:17 +00:00
* Improved ASN update script * Ran `utils/update_every_lists.sh' * `tests/do.sh.in' prints the amount of failed pcap(s) * `utils/asn_update.sh' prints the amount of failed download(s) Signed-off-by: lns <matzeton@googlemail.com>
22 lines
583 B
Bash
Executable file
22 lines
583 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$(dirname "${0}")" || exit 1
|
|
|
|
DEST=../src/lib/inc_generated/ndpi_cachefly_match.c.inc
|
|
LIST=/tmp/cachefly.list
|
|
ORIGIN='https://cachefly.cachefly.net/ips/cdn.txt'
|
|
|
|
|
|
echo "(1) Downloading file..."
|
|
http_response=$(curl -s -o "${LIST}" -w "%{http_code}" "${ORIGIN}")
|
|
if [ "${http_response}" != "200" ]; then
|
|
echo "Error ${http_response}: you probably need to update the list url!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "(2) Processing IP addresses..."
|
|
./ipaddr2list.py "${LIST}" NDPI_PROTOCOL_CACHEFLY > "${DEST}"
|
|
rm -f "${LIST}"
|
|
|
|
echo "(3) Cachefly IPs are available in ${DEST}"
|
|
exit 0
|