Can't access Mikrotik by second WAN

Hello,
I have standard config from Wiki PCC (but without any load balancing) but I can’t access mikrotik from second WAN, so if WAN1 is default then I can’t ping and connect to mikrotik WAN2 interface, when WAN2 is default then I can’t ping and winbox connect to it’s WAN1. WAN1 is SFP1, WAN2 is ether7,both have static IP:

mangle:

 
 chain=prerouting action=mark-connection new-connection-mark=WAN1 
      passthrough=no in-interface=sfp1 log=no log-prefix="" 

chain=prerouting action=mark-connection new-connection-mark=WAN2 
      passthrough=no connection-state="" connection-type="" in-interface=ether7 
      log=no log-prefix="" 

chain=output action=mark-routing new-routing-mark=to_WAN1 passthrough=no 
      connection-mark=WAN1 log=no log-prefix="" 

chain=output action=mark-routing new-routing-mark=to_WAN2 passthrough=no 
      connection-mark=WAN2 log=no log-prefix=""

ip route:

 dst-address=0.0.0.0/0 gateway=WAN1_IP_GW 
        gateway-status=WAN1_IP_GW  reachable via  sfp1 check-gateway=ping 
        distance=1 scope=30 target-scope=10 routing-mark=to_WAN1 
        
dst-address=0.0.0.0/0 gateway=WAN2_IP_GW  
        gateway-status=WAN2_IP_GW reachable via  ether7 check-gateway=ping 
        distance=1 scope=30 target-scope=10 routing-mark=to_WAN2 
        
;;; WAN1
        dst-address=0.0.0.0/0 gateway=WAN1_IP_GW 
        gateway-status=WAN1_IP_GW reachable via  sfp1 check-gateway=ping 
        distance=1 scope=30 target-scope=10 

;;; WAN2
        dst-address=0.0.0.0/0 gateway=WAN2_IP_GW   
        gateway-status=WAN2_IP_GW reachable via  ether7 check-gateway=ping 
        distance=2 scope=30 target-scope=10

If I am pinging WAN2 from outside in mikrotik Firewall Connections I even don’t see this connection showing up
There is no any ip route rules, no ip firewall filtering, could anyone help me with this?