2 Wans to 2 Lans ping each other

Hi, i have problem in my mikrotik

I have two ISP’s and i need to make two lans

  • traffic from LAN1 goes to WAN1
  • traffic from LAN2 goes to WAN2

I have already setup this but i need LAN1 to ping LAN2 but i failed in this
Please help.

Hi jeklany,
What is the purpose of being able to ping another LAN?
Do you want to be able all devices on one LAN to access devices on the other lan, or perhaps both ways?

Typically the two LANS (either both on two separate bridges, or one on a bridge and the other NOT) basically stops any traffic between the LANs and thus not able to ping.

My guess is that you would have to do either one of two things and not sure myself.
IP Filter rules…
a. Forward chain- allow rule LANsubnet1 to LANsubnet2 , and Forward chain- allow rule LANsubnet2 to LANsubnet1 ,

In plain english: allow traffic from one lan to the other

OR

b. IP Mangle prerouting chain, 0.0.0.0/0 source address, dstn address LAN2Subnet, in-interface LAN1BRIDGE action mark routing new route mark - accessLan2
IP route LAN2 subnet, mark - accessLan2

IP Mangle prerouting chain, 0.0.0.0/0 source address, dstn address LAN1Subnet, in-interface LAN2BRIDGE action mark routing new route mark - accessLan1
IP route LAN1 subnet mark - accessLan1

In plain english: Mark traffic coming from LAN1 that is heading to LAN2, Route that traffic to LAN2
Mark traffic coming from LAN2 that is heading to LAN1, ROute that traffic to LAN1

Hopefully those more expert can chime in.