diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 2270824..26b8f05 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,6 +4,9 @@ { "type": "cargo", "command": "build", + "args": [ + "--workspace" + ], "problemMatcher": [ "$rustc", "$rust-panic" @@ -14,12 +17,25 @@ { "type": "cargo", "command": "test", + "args": [ + "--workspace" + ], "problemMatcher": [ "$rustc", "$rust-panic" ], "group": "test", "label": "rust: cargo test" - } + }, + { + "type": "shell", + "command": "zola", + "args": [ + "-r", + "docs/website", + "serve" + ], + "label": "zola: serve website" + } ] } \ No newline at end of file diff --git a/docs/website/.gitignore b/docs/website/.gitignore new file mode 100644 index 0000000..85a1daf --- /dev/null +++ b/docs/website/.gitignore @@ -0,0 +1 @@ +/public \ No newline at end of file diff --git a/docs/website/config.toml b/docs/website/config.toml new file mode 100644 index 0000000..e92be9a --- /dev/null +++ b/docs/website/config.toml @@ -0,0 +1,8 @@ +base_url = "https://protomask.ewpratten.com" +compile_sass = true +build_search_index = true + +[markdown] +highlight_code = true + +[extra] diff --git a/docs/website/content/_index.md b/docs/website/content/_index.md new file mode 100644 index 0000000..d7d76b9 --- /dev/null +++ b/docs/website/content/_index.md @@ -0,0 +1,33 @@ +--- +title: Protomask +--- + +## What is protomask? + +Protomask is a user space [NAT64](https://en.wikipedia.org/wiki/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](https://docs.kernel.org/networking/tuntap.html) to translate incoming packets from IPv4 to IPv6 and vice-versa. + +## 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` + +## Want to learn more? + +Check out the [documentation](/book) for a deeper dive into protomask, or head over to the [GitHub repository](https://github.com/ewpratten/protomask) to see the source code. diff --git a/docs/website/sass/main.scss b/docs/website/sass/main.scss new file mode 100644 index 0000000..717d4cc --- /dev/null +++ b/docs/website/sass/main.scss @@ -0,0 +1,7 @@ +.container { + max-width: 1000px !important; + + h2 { + font-weight: bold; + } +} diff --git a/docs/website/templates/base.html b/docs/website/templates/base.html new file mode 100644 index 0000000..798ffb3 --- /dev/null +++ b/docs/website/templates/base.html @@ -0,0 +1,45 @@ + + + +
+ + +Protomask is a project by Evan Pratten
+ + + + + + \ No newline at end of file diff --git a/docs/website/templates/index.html b/docs/website/templates/index.html new file mode 100644 index 0000000..2b92d6d --- /dev/null +++ b/docs/website/templates/index.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block title %}{{section.title}}{% endblock title %} + +{% block content %} +