Why is there no server-side config? #182
-
I notice that with If not, does that mean that I can change the client file after it is generated, and it will still work? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @winston0410, The agent pod (wg server) has access to the peers public key, ip, etc.. .This information is injected by the operator in
Can you give me an example of what change? |
Beta Was this translation helpful? Give feedback.
-
those setups uses the problem with |
Beta Was this translation helpful? Give feedback.
those setups uses
wg-quick
. wg-quick is actually only a wrapper that uses wireguard.the problem with
wg-quick
is that it wasn't designed to be used in an "automated" way and was mostly a simple tool for easily setting up a wireguard server. I've built an agent in golang that interacts with wireguard directly and configures it with the peers defined. One huge benefit from that is that you can actually add a new peer without having to restart wireguard (zero downtime). wg-quick suffers from that problem