HandyGuy
Members
-
Joined
-
Last visited
Solutions
-
HandyGuy's post in Can't connect to webui for docker using VPN interface technique from SpaceInvader Tutorial was marked as the answerI was finally able to figure this out incase it helps anyone else.
My issue is my unraid is on a subnet different than my laptop/desktop. The Unraid firewall for the vpn connection treats all ips on different subnet as "external" so replies to my desktop was going through the wireguard interface not allowed to go back to my desktop.
So what solved it for me was the following that I add to User Scripts. If you don't understand below or it doesn't work straight away then I would just paste it to chat gpt asking how to figure out your docker gateway and the interface for the particular interface "shim-br0"
#!/bin/bash
ip route replace <my non server subnet>/24 via <docker gateway> dev shim-br0 table 200 || true