Hi,
here are my data:
mikrotik ccr1009 with newest ROS 6.32.3
I need to create IPIP tunnel between Router_A_ISP1 and Router_B_ISP2, so I have on Router_B where are connected two WAN’s,
mangle:
chain=input action=mark-connection new-connection-mark=WAN1 passthrough=no in-interface=sfp1(WAN1) log=no log-prefix=""
9 chain=input action=mark-connection new-connection-mark=WAN2 passthrough=no in-interface=ether7(WAN2) log=no log-prefix=""
10 chain=forward action=mark-connection new-connection-mark=WAN1 passthrough=no in-interface=sfp1 log=no log-prefix=""
11 chain=forward action=mark-connection new-connection-mark=WAN2 passthrough=no in-interface=ether7 log=no log-prefix=""
12 chain=output action=mark-routing new-routing-mark=to_WAN1 passthrough=no connection-mark=WAN1 log=no log-prefix=""
13 chain=output action=mark-routing new-routing-mark=to_WAN2 passthrough=no connection-mark=WAN2 log=no log-prefix=""
and route:
0 A S dst-address=0.0.0.0/0 gateway=ISP1_GW gateway-status=ISP1_GW reachable via sfp1 check-gateway=ping distance=1 scope=30 target-scope=10
routing-mark=to_WAN1
1 A S dst-address=0.0.0.0/0 gateway=ISP2_GW gateway-status=ISP2_GW reachable via ether7 check-gateway=ping distance=1 scope=30 target-scope=10
routing-mark=to_WAN2
3 A S ;;; WAN1
dst-address=0.0.0.0/0 gateway=ISP1_GW gateway-status=ISP1_GW reachable via sfp1 check-gateway=ping distance=1 scope=30 target-scope=10
4 S ;;; WAN2
dst-address=0.0.0.0/0 gateway=ISP2_GW gateway-status=ISP2_GW reachable via ether7 check-gateway=ping distance=2 scope=30 target-scope=10
But now I have problems, IPIP Tunnel not runnning it’s enabled but not running.
On Router_B on connection tracking I have enabled filter with connection marks, and I see that this IPIP connection from Router_A_ISP1 to Router_B_ISP2 is marked as connection WAN1, but should be WAN2 because is configured on WAN2.
When on Router_A change config IPIP tunnel to remote Gateway as Router_B_ISP1 then tunnel is running.
My second problem is that I can’t ping Router_B_ISP2, only ISP1 respond.
Could anybody tell me what is wrong with my config?
thanks