Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

34
fastd Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`