<div dir="ltr"><div>A side (<a href="http://192.168.2.0/24">192.168.2.0/24</a>):</div><div><br></div><div>LEDE router 192.168.2.1 (static route to access remote side <a href="http://192.168.1.0/24">192.168.1.0/24</a> pointing to 192.168.2.100)</div><div><br></div><div>Pi Zero with Wireguard (192.168.2.100, WG: 192.168.5.2)</div><div><br></div><div>Config:</div><div><br></div><div>auto wg0</div><div>iface wg0 inet static</div><div>  pre-up ip link add dev wg0 type wireguard</div><div>  post-up wg setconf wg0 /etc/wireguard/wireguard.conf</div><div>  post-up ip link set dev wg0 up</div><div>  post-up ip route add <a href="http://192.168.1.0/24">192.168.1.0/24</a> via 192.168.5.1 dev wg0</div><div>  post-up iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE</div><div>  address 192.168.5.2</div><div>  netmask 255.255.255.0</div><div><br></div><div><br></div><div>B side (<a href="http://192.168.1.0/24">192.168.1.0/24</a>):</div><div><br></div><div>Unifi router 192.168.1.1 (static route to access remote side <a href="http://192.168.2.0/24">192.168.2.0/24</a> pointing to 192.168.1.54)</div><div><br></div><div>Ubuntu server with Wireguard (192.168.1.54, WG: 192.168.5.1)</div><div><br></div><div>Config:</div><div><br></div><div>iface wg0 inet static</div><div>  pre-up /sbin/ip link add dev wg0 type wireguard</div><div>  post-up /usr/bin/wg setconf wg0 /etc/wireguard/wg0.conf</div><div>  post-up /sbin/ip route add <a href="http://192.168.2.0/24">192.168.2.0/24</a> via 192.168.5.2 dev wg0</div><div>  post-up iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE</div><div>  post-down /sbin/ip link del wg0</div><div>  address 192.168.5.1</div><div>  netmask 255.255.255.0</div><div><br></div><div>---</div><div><br></div><div>Everything is working great, except that on the "Pi Zero with Wireguard" I can't access/ping remote devices in the <a href="http://192.168.1.0/24">192.168.1.0/24</a> range, only the remote server 192.168.1.54. From any other machine in the same "A side" I am able to access devices in the <a href="http://192.168.1.0/24">192.168.1.0/24</a> range, just from the Pi Zero itself not.</div><div><br></div><div>What I am missing here?</div><div><br></div><div><br></div><div>pi@raspberrypizero:~ $ ping 192.168.1.54</div><div>PING 192.168.1.54 (192.168.1.54) 56(84) bytes of data.</div><div>64 bytes from <a href="http://192.168.1.54">192.168.1.54</a>: icmp_seq=1 ttl=64 time=48.6 ms</div><div>64 bytes from <a href="http://192.168.1.54">192.168.1.54</a>: icmp_seq=2 ttl=64 time=134 ms^C</div><div>--- 192.168.1.54 ping statistics ---</div><div>2 packets transmitted, 2 received, 0% packet loss, time 1002ms</div><div>rtt min/avg/max/mdev = 48.671/91.554/134.437/42.883 ms</div><div>pi@raspberrypizero:~ $ ping 192.168.1.100</div><div>PING 192.168.1.100 (192.168.1.100) 56(84) bytes of data.</div><div>^C</div><div>--- 192.168.1.100 ping statistics ---</div><div>6 packets transmitted, 0 received, 100% packet loss, time 5188ms</div><div><br></div><div>pi@raspberrypizero:~ $ traceroute 192.168.1.100</div><div>traceroute to 192.168.1.100 (192.168.1.100), 30 hops max, 60 byte packets</div><div> 1  192.168.5.1 (192.168.5.1)  42.279 ms  43.834 ms  44.678 ms</div><div> 2  * * *</div><div> 3  * * *</div><div> 4  * * *</div><div><br></div><div><br></div><div>---</div><div><br></div><div>B side is working great, I am able to ping everything, even from the Ubuntu server.</div><div><br></div><div><br></div><div>Regards,</div><div>Adrian</div></div>