Hello,
I have not tried Wireguard, but have had success with ZeroTier. In my experience is faster, and more simple to configure than OpenVPN. I have also seen others use Tailscale on a PFC200.
This write-up shows how to leverage ZeroTier VPN service on a Wago Controller. We do this by creating a Docker Container to run ZeroTier. This can also be installed on a PC to create a connection between the controller and your PC for remote programming and troubleshooting.
Hi, I’ve successfully used it on a PFC.
Here is the command I used for installation :
docker run -d --name=tailscaled --restart unless-stopped -v /var/lib:/var/lib -v /var/lib/tailscale:/var/lib/tailscale -e TS_STATE_DIR=/var/lib/tailscale -v /dev/net/tun:/dev/net/tun -e TS_USERSPACE=0 --network=host --cap-add=NET_ADMIN --cap-add=NET_RAW tailscale/tailscale
After you check the status and get the URL to connect it to your tailscale account :
docker exec tailscaled tailscale --socket /tmp/t…
2 Likes