IP2Location™ Traceroute Application
Are you looking for free network diagnostic tool or traceroute application to determine if there is a connection problem or latency connecting to a site, or do you wish to know how data on the internet travels from one source to its destination?
IP2Location™ Traceroute Application is an open-source command line application that performs traceroute with geolocation information to detect country, region, city, latitude, longitude, ZIP code, ISP, domain name, timezone, connection speed, IDD code, area code, weather station code, weather station name, MCC, MNC, mobile brand name, elevation, usage type, address type, IAB category and ASN. It is using IP2Location BIN database for quick local lookup without external API.
Two languages are supported, which is C and Python.
You can run this traceroute application on Windows and Linux.
- Run the following command in your command prompt:
pip install IP2Trace
- Run the traceroute application
ip2tracepy -p 1.2.3.4 -d /usr/share/ip2location/DB3.BIN
Syntax
ip2tracepy -p [IP ADDRESS/HOSTNAME] -d [IP2LOCATION BIN DATA PATH] [OPTIONS]
Options
- -d, --database Specify the path of IP2Location BIN database file.
- -h, -?, --help Display help guide.
- -p, --ip Specify an IP address or hostname.
- -t, --ttl Set the max number of hops. (Default: 30)
- -o, --output Set the desired IP2Location BIN database columns to output with. Available columns are: country_code, country_name, region_name, city_name, isp, latitude, longitude, domain, zip_code, time_zone, net_speed, idd_code, area_code, weather_station_code, weather_station_name, mcc, mnc, mobile_brand, elevation, usage_type.
- -a, --all Print all the column(s) available based on the BIN file used.
- -v, --version Print the version.
Example
ip2tracepy -p 8.8.8.8 -d /usr/share/ip2location/DB3.BIN -t 20
IP2Location Geolocation Traceroute (ip2trace) Version 3.0.0
Copyright (c) 2021 IP2Location.com [MIT License]
https://www.ip2location.com/free/traceroute-application
1 37.123.114.1 0.3853ms ["GB","England","London"]
2 10.10.32.132 0.4084ms ["-","-","-"]
3 10.10.32.17 0.2673ms ["-","-","-"]
4 212.78.92.2 0.5546ms ["GB","England","London"]
5 98.158.181.98 1.8706ms ["US","New York","New York City"]
6 195.66.236.125 0.5715ms ["GB","England","London"]
7 108.170.246.129 0.5193ms ["US","California","Mountain View"]
8 108.170.232.97 0.4749ms ["US","California","Mountain View"]
9 8.8.8.8 0.5693ms ["US","Mountain View"]
How does IP2Location Geolocation Traceroute (IP2Trace) work - Python
Traceroute on Linux