From 8a0053905adc72d74127c6830fc27ab2723bd53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20K=C3=BCthe?= Date: Sun, 12 Mar 2023 21:13:35 -0800 Subject: [PATCH] fastd: add page (#9932) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marek Küthe --- pages/common/fastd.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/common/fastd.md diff --git a/pages/common/fastd.md b/pages/common/fastd.md new file mode 100644 index 000000000..698b1a124 --- /dev/null +++ b/pages/common/fastd.md @@ -0,0 +1,29 @@ +# fastd + +> VPN daemon. +> Works on Layer 2 or Layer 3, supports different encryption methods, used by Freifunk. +> More information: . + +- Start fastd with a specific configuration file: + +`fastd --config {{path/to/fastd.conf}}` + +- Start a Layer 3 VPN with an MTU of 1400, loading the rest of the configuration parameters from a file: + +`fastd --mode {{tap}} --mtu {{1400}} --config {{path/to/fastd.conf}}` + +- Validate a configuration file: + +`fastd --verify-config --config {{path/to/fastd.conf}}` + +- Generate a new key: + +`fastd --generate-key` + +- Show the public key to a private key in a configuration file: + +`fastd --show-key --config {{path/to/fastd.conf}}` + +- Show the current version:: + +`fastd -v`