I am trying to configure a mikrotik router in order to act as a transparent bridge but in a way it can be accessed for remote monitoring. For testing purposes I am trying to pass all packets but redirect the port 80 to the router itself.
I created a bridge, added the ports 4 and 5, and assigned it an IP (192.168.89.1).
Then, at bridge NAT I added a dstnat rule to the bridge that matches protocol TCP and port 80 with the action "redirect". The counter shows it is catching the packets.
Then, at firewall I created a NAT rule. Dstnat, protocol tcp, port 80, action redirect, port 80. The counter indicates it is catching the packets but I never receive an answer.
I also tried dst-nat to (192.168.89.1:80) instead of redirect with the same results...
The idea is to transparently pass all traffic throug the bridge no mather the ip but if the traffic is destinated to a specific port, it should be natted to the router IP address and answered by it with the original IP, but the router itself does not have internet access because it has not a valid IP address. I want it only answers some packets.