User-space network protocol stack written in Rust
Last updated Jan 10, 2026
79
Stars
6
Forks
1
Issues
0
Stars/day
Attention Score
9
Topics
Language breakdown
Rust 98.7%
Shell 0.9%
Dockerfile 0.4%
โธ Files
click to expand
README
rust-user-net
User-space network protocol stack written in Rust for study / experiment purpose
Talks Ethernet / ARP / IP / ICMP / UDP / TCP through TAP device on Linux.

This project is by and large a Rust port of microps project written in C. Many thanks to the owner for awesome codes and shared decks (Japanese).
High-level View

Setup and Usage
- Built and tested on Ubuntu 22.04
cd rust-user-net
Build
cargo build
TAP device setup (will be reset on reboot)
./set_tap.sh
If you want rust-user-net to connect to Internet:
Output interface name is assumed to be wlp0s20f3.
Please update it if it's different in your machine.
./set_forward.sh
Show help
./rust-user-net -h
./rust-user-net tcp -h
./rust-user-net tcp send -h
Example
HTTP (TCP: 80) request to http://www.google.com:
# Send command sends a request and gets into receive loop
rust-user-net tcp send 142.250.4.138 80 'GET / HTTP/1.1\r\nHost: www.google.com\r\n\r\n'
Local Tests with netcat
# TCP
Test send command:
nc listens for TCP active open (3-way handshake) from rust-user-net
nc -nv -l 10007
rust-user-net tcp send 192.0.2.1 10007 "TCP TEST DATA"
Test receive command:
nc connects and sends data to rust-user-net (192.0.2.2:7)
rust-user-net tcp receive 0.0.0.0 7
nc -nv 192.0.2.2 7 # -n: no name resolution
UDP
Test send command:
nc listens for UDP data from rust-user-net
nc -u -l 10007
rust-user-net udp send 192.0.2.1 10007 "UDP TEST DATA"
Test receive command:
nc sends UDP data to rust-user-net (192.0.2.2:7)
rust-user-net udp receive 0.0.0.0 7
nc -u 192.0.2.2 7 # -u: UDP mode๐ More in this category