# WireGuard Konfiguration - Proxmox Client # Pfad auf Proxmox: /etc/wireguard/wg0.conf # # WICHTIG: PrivateKey und PublicKey muessen fuer jede Installation # neu generiert werden! # # Keys generieren: # wg genkey | tee privatekey | wg pubkey > publickey # # Aktivieren: # systemctl enable wg-quick@wg0 # systemctl start wg-quick@wg0 [Interface] # Eigener Private Key (GEHEIM!) PrivateKey = # IP im WireGuard Tunnel-Netzwerk Address = 10.0.0.2/24 [Peer] # Public Key des VPS Servers PublicKey = # VPS Server IP und Port Endpoint = 217.154.65.205:51820 # Erlaubte IPs (nur Tunnel-Netzwerk) AllowedIPs = 10.0.0.0/24 # Keepalive fuer NAT-Traversal PersistentKeepalive = 25