initial commit

This commit is contained in:
2026-04-07 17:41:25 +02:00
commit 1ed9bdfa55
45 changed files with 4712 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package constants
// WireGuard defaults
const (
WireGuardPort = 51820
DefaultMTU = 1420
// IPv4 configuration
WireGuardIPv4 = "10.2.0.2/32"
DefaultDNSIPv4 = "10.2.0.1"
DefaultAllowedIPsIPv4 = "0.0.0.0/0"
// IPv6 configuration
WireGuardIPv6 = "2a07:b944::2:2/128"
DefaultDNSIPv6 = "2a07:b944::2:1"
DefaultAllowedIPsIPv6 = "::/0"
)