This router has a public IP (1.1.1.1) and communicates with another router B with another public IP address (1.1.2.1) by cable, both routers are linked by cable with another internal network (172.16.0.1/30 and 172.16.0.2/30).
Routes are dynamically sent (BGP)
So routes at the Rouer A go through 172.16.0.2 (Router B)
Given the fact that 192.x.x.x and 172.x.x.x are both internal networks, the IP addresses at the hotspot are intended to be nated to the public IP address 1.1.1.1 by doing
Code: Select all
/ ip firewall nat
add chain=srcnat src-address=192.168.1.0/24 action=src-nat to-addresses=1.1.1.1 to-ports=0-65535 comment="" disabled=no
What's wrong here?
Edited If I do a simple NAT without a hotspot, it works. Looks like while using a Hotspot is doing a masquerade by his own and does not follow the rules at "/ip firewall nat" ??