Quote from: Bob.Dig on March 10, 2025, 06:21:02 PMMaybe they are guarded by their hosts-firewalls?
Thanks for the suggestion, but no. The firewall rules are not the issue.
ChatGPT pointed me to the solution:
Code Select
Adjust WireGuard Peer Configurations
On each WireGuard client (peer), check the AllowedIPs setting:
Change AllowedIPs = 0.0.0.0/0 (or similar) to include the LAN network:
AllowedIPs = 192.168.0.0/24, 0.0.0.0/0
This ensures that traffic destined for 192.168.0.0/24 is sent through the VPN tunnel.
Restart the WireGuard client after making the changes.
Adding 192.168.0.0/24 to AllowedIPs did the trick.