Cross-platform low-level networking library in Rust
nex
is a Rust library that provides cross-platform low-level networking capabilities.
It includes a set of modules, each with a specific focus:
datalink
: Datalink layer networking.packet
: Low-level packet parsing and building.socket
: Socket-related functionality.
The project has plans to enhance nex with the following features:
- More Protocol Support: Expanding protocol support to include additional network protocols and standards.
- Performance Improvements: Continuously working on performance enhancements for faster network operations.
To use nex
, add it as a dependency in your Cargo.toml
:
[dependencies]
nex = "0.22"
You can also directly use specific sub-crates by importing them individually.
nex-datalink
nex-packet
nex-socket
If you want to focus on network interfaces, you can use the netdev.
nex-datalink
uses a raw socket which may require elevated privileges depending on your system's configuration.
Execute with administrator privileges if necessary.
Please note that in order to send and receive raw packets using nex-datalink
on Windows, Npcap is required.
-
Install Npcap, making sure to check Install Npcap in WinPcap API-compatible Mode during the installation.
-
Download the Npcap SDK. Add the SDK's /Lib/x64 (or /Lib) folder to your LIB environment variable.
On macOS, managing access to the Berkeley Packet Filter (BPF) devices is necessary for send and receive raw packets using nex-datalink
.
You can use chmod-bpf to automatically manage permissions for BPF devices.
Alternatively, of course, you can also use sudo
to temporarily grant the necessary permissions.