1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-16 01:55:48 +02:00

fastd: add page (#9932)

Signed-off-by: Marek Küthe <m.k@mk16.de>
This commit is contained in:
Marek Küthe 2023-03-12 21:13:35 -08:00 committed by GitHub
parent 67c4229193
commit 8a0053905a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
pages/common/fastd.md Normal file
View file

@ -0,0 +1,29 @@
# fastd
> VPN daemon.
> Works on Layer 2 or Layer 3, supports different encryption methods, used by Freifunk.
> More information: <https://fastd.readthedocs.io/en/stable/>.
- 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`