summaryrefslogtreecommitdiff
path: root/gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-05-11 12:02:14 +0300
committerPaul Buetow <paul@buetow.org>2025-05-11 12:02:14 +0300
commit23ce3a4f27081c6a41fd2ab38a29c835c89e336b (patch)
tree8a493d8c4c717ace1ff0c47fcb2749aeac342cdb /gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md
parenta580f7d016af100fb3cc63f384559eb3581cc7ac (diff)
Update content for md
Diffstat (limited to 'gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md')
-rw-r--r--gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md b/gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md
index 26c68c5d..e6d9e585 100644
--- a/gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md
+++ b/gemfeed/2025-05-11-f3s-kubernetes-with-freebsd-part-5.md
@@ -346,7 +346,7 @@ So, because it's better, we are using it.
## Mesh network generator
-Manually generating `wg0.conf` files for every peer in a mesh network setup is cumbersome because each peer requires its own unique public/private key pair and a preshared key for each VPN tunnel (resulting in 29 preshared keys for 8 hosts). This complexity scales exponentially with the number of peers as the relationships between all peers must be explicitly defined, including their unique configurations such as `AllowedIPs` and `Endpoint` and optional settings like `PersistentKeepalive`. Automating the process ensures consistency, reduces human error, saves considerable time, and allows for centralized management of configuration files.
+Manually generating `wg0.conf` files for every peer in a mesh network setup is cumbersome because each peer requires its own unique public/private key pair and a preshared key for each VPN tunnel (resulting in 29 preshared keys for 8 hosts). This complexity scales almost exponentially with the number of peers as the relationships between all peers must be explicitly defined, including their unique configurations such as `AllowedIPs` and `Endpoint` and optional settings like `PersistentKeepalive`. Automating the process ensures consistency, reduces human error, saves considerable time, and allows for centralized management of configuration files.
Instead, a script can handle key generation, coordinate relationships, and generate all necessary configuration files simultaneously, making it scalable and far less error-prone.