

Now you should be able to access the Mikrotik router from any device on the same WireGuard network, including the phone app.

This could be adjusted to forward all traffic to the Mikrotik router but then you would need a separate WireGuard peer configuration for accessing the actual Raspberry Pi through the WireGuard network. Or just a single port 80: sudo iptables -t nat -A PREROUTING -i wg0 -p tcp -destination-port 80 -j DNAT -to-destination 192.168.88.1 To the Mikrotik router at IP address 192.168.88.1: sudo iptables -t nat -A PREROUTING -i wg0 -p tcp -match multiport -destination-ports 80,5678,8728,8291 -j DNAT -to-destination 192.168.88.1

