From 4a8e7105b2d69e88b03c49e3f2d308cd2d66e48c Mon Sep 17 00:00:00 2001 From: Maatuq Date: Wed, 25 Oct 2023 14:44:33 +0400 Subject: add ethereum protocol dissector. (#2111) as explained here for bitcoin https://www.ntop.org/guides/nDPI/protocols.html#ndpi-protocol-bitcoin the same is applicable for ethereum. ethereum detection was removed from mining protocol and is now handled separately. Signed-off-by: Mahmoud Maatuq --- utils/ethereum_ip_addresses_download.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/ethereum_ip_addresses_download.sh b/utils/ethereum_ip_addresses_download.sh index 172c656d7..076b24359 100755 --- a/utils/ethereum_ip_addresses_download.sh +++ b/utils/ethereum_ip_addresses_download.sh @@ -20,9 +20,9 @@ echo "(2) Processing IP addresses..." grep 'enode' $TMP | grep -v '^/' | grep ':' | cut -d '@' -f 2 | cut -d ':' -f 1 > $LIST is_file_empty "${LIST}" -./ipaddr2list.py $LIST NDPI_PROTOCOL_MINING > $DEST +./ipaddr2list.py $LIST NDPI_PROTOCOL_ETHEREUM > $DEST rm -f $TMP $LIST is_file_empty "${DEST}" -echo "(3) Ethereum/Mining IPs are available in $DEST" +echo "(3) Ethereum IPs are available in $DEST" exit 0 -- cgit v1.2.3