1
2023-08-03 20:30:13 -04:00
2023-08-03 23:56:15 -04:00
2023-08-03 23:27:01 -04:00
2023-08-03 20:30:13 -04:00
2023-08-04 00:09:36 -04:00
2023-08-03 23:54:12 -04:00
2023-08-03 20:07:13 -04:00
2023-07-20 19:09:21 -04:00
2023-07-20 15:48:05 -04:00
2023-08-03 23:18:12 -04:00
2023-08-03 20:30:13 -04:00
2023-08-03 23:27:01 -04:00
2023-07-14 11:44:35 -04:00
2023-08-04 11:54:57 -04:00

protomask: Fast & reliable user space NAT64

GitHub release Build Audit

Protomask is a user space NAT64 implementation geared towards networks that need fast and reliable inter-protocol packet translation. Behind the scenes, protomask uses the Universal TUN/TAP Device Driver to translate incoming packets from IPv4 to IPv6 and vice-versa.

Latest Releases

Crate Info
protomask Crates.io
protomask-clat Crates.io
easy-tun Crates.io Docs.rs
fast-nat Crates.io Docs.rs
interproto Crates.io Docs.rs
rfc6052 Crates.io Docs.rs
rtnl Crates.io Docs.rs

The protomask tool suite

To accomplish the various translation needs of an IPv6-only or dual-stack ISP, the protomask tool suite includes a few tools:

  • protomask: The main NAT64 daemon
    • Translates IPv6 packets using RFC6052 IPv4-Embedded IPv6 Addressing to native IPv4 traffic
    • Can handle high volumes of traffic from multiple clients simultaneously
  • protomask-clat: A Customer-side transLATor (CLAT) implementation
    • Intended to be deployed at the customer edge to pass IPv4 traffic over an IPv6-only ISP's network

Every tool in the protomask suite is easy to deploy and configure, plus supports optionally exposing Prometheus metrics for remote monitoring.

The protomask library suite

The development of protomask necessitated the creation of a few specialized software libraries. Since the technology developed for protomask is useful outside of the scope of this project, these libraries are also available for general use:

  • easy-tun: A minimal TUN interface library
  • fast-nat: A library designed for highly efficient mapping and lookup of IP address pairs
  • interproto: The heart of protomask, a library for translating many types of packets between layer 3 protocols
  • rfc6052: A Rust implementation of RFC6052
  • rtnl: A high-level wrapper around rtnetlink

Installation

Protomask can be installed using various methods:

Debian

Head over to the releases page and download the latest release for your architecture.

Then, install with:

apt install /path/to/protomask_<version>_<arch>.deb

# You can also edit the config file in /etc/protomask.toml
# And once ready, start protomask with
systemctl start protomask

Using Cargo

cargo install protomask
Description
Fast & reliable user space NAT64
Readme 766 KiB
Languages
Rust 96.6%
Makefile 3.4%