NATting with Mikrotik

Hello!

Recently, I switched to a Mikrotik router. Very happy
My current setup looks like:
Ether1 - ISP WAN
Ether2 - LAN
Ether3 - BGP port (To announce own IP´s)


I removed all NAT rules so that the BGP port would not show the WAN IP address. However, I now I of course don’t have access to the internet via Ether2 (LAN)

How would I create a NAT rule that only applies to Ether2? So Ether2 is Natt´éd user Ether1.

I tried with a bridge, but could not get it working. Do you have some tips for me?

Hello, sipmly use masquerade rule :
/ip firewall nat
add action=masquerade chain=srcnat comment=“masquerade” out-interface=Ether1 src-address=your_lan_subnet

Hello.
Thanks for your answer,
When I set that up, I still don’t get any network on 192.168.88.0/24.

See following screenshot:
https://imgur.com/a/aC0je5O

Perhaps try changing the source to 192.168.88.0/24. Its probably trying to allow only 192.168.88.0 access to NAT and not the whole network. Reminder, the source could be an individual IP or a range. Without the CIDR, it assumes you are only allowing 1 address to gain access to the internet.

Can you show your routing table? Best if the export of config.

Thanks for the answers

I got it working - Kind of. With the above written stuff, It routes everything to the subnet, so I loose access to all other subnets on the interfaces..