VPN and networking
Enable TUN/TAP for OpenVPN
Load the tun module so OpenVPN can create a tunnel on Linux.
OpenVPN needs a TUN (or TAP) device. On a Noble VPS the module is available; you still have to load it and persist it.
Load the module
Load TUN, then confirm the device exists.
modprobe tun
ls -l /dev/net/tunIf modprobe fails, open a ticket — the guest may not have the device allowed.
Persist on boot
echo tun | tee /etc/modules-load.d/tun.confReboot once to prove it survives.
OpenVPN
Install OpenVPN from your distribution, drop server.conf in /etc/openvpn/, and enable the systemd unit.
apt update && apt install -y openvpn
systemctl enable --now openvpnOpen UDP 1194 (or the port you chose) on the firewall.
TAP versus TUN
TUN is layer 3 and what most people want. TAP is Ethernet bridging and heavier. Use TUN unless you have a reason not to.