
Configure Wireguard on Openmediavault 5
Introduction As per my previous post on OMV5 and OpenVPN, I decided to install Wireguard, a more performant VPN software. Configuration To start, we need to install Wireguard on OMV5. So SSH into your box and run: apt update apt install wireguard Verify that the Wireguard kernel module is functional: /sbin/modinfo wireguard Create a server keypair: mkdir /etc/wireguard/ chmod 700 /etc/wireguard/ cd /etc/wireguard/ wg genkey | tee vpn-server-private.key | wg pubkey > vpn-server-public....