##
STATUS


OVERVIEW

Libtraceroute is a cross-platform traceroute library for Rust, that allows displaying possible routes (paths) and measuring transit delays of packets across an Internet Protocol (IP) network. Libtraceroute uses pnet, a low-level networking library, to send and capture packets at the data link layer, which allows it to operate without the need for root privileges on MacOS and Windows, but still requires sudo on Linux.


FEATURES

Libtraceroute works at the data link layer with custom-built packets, which provides the user with a lot of options for customizations. The library allows to configure the following parameters:
- [REQUIRED] - Destination address
- [OPTIONAL] - Maximum number of hops   Port   Number of queries per hop   Network interface   Protocol   Timeout per query



USAGE

To use libtraceroute in your project, add the following to your Cargo.toml:

[dependencies] libtraceroute = "0.1.0"

NOTE! If you are using Windows, follow these instructions to make pnet work:

Windows

Source: https://github.com/libpnet/libpnet/blob/master/README.md