I've had some success with allowing local access to Wireguard and it's attached containers. Im running this via docker-compose but it should work in unRAID's GUI as well. Here's what I've added. Wireguard Container: - Add environmental variable LAN_NETWORK and populate with your LAN (i.e. 192.168.1.0/24) - in the wg0.conf config file, add the following to the PostUp and PostDown lines PostUp=ip route add $LAN_NETWORK via $(ip route |awk '/default/ {print $3}') dev eth0 PostDow