nitefood / asn

ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization / IP reputation / IP geolocation / IP fingerprinting / Network recon / lookup API server / Web traceroute server
MIT License
1.31k stars 159 forks source link

Is it possible to give it a file containing IP adresses #24

Closed jedai47 closed 2 years ago

jedai47 commented 2 years ago

One IP per line.

Thanks a lot

nitefood commented 2 years ago

You can easily accomplish that with a very simple shell one liner, for instance:

for ip in $(cat iplist.txt); do asn -n $ip; done

HTH