Cisco NAT Pool with Mikrotik

Hi everyone… hope someone will help me doing this…
I’ve installed routerOS in VMware Workstation with 3 NiC
here is some Cisco configuration with i want to do on mikrotik…

.

interface FastEthernet0/0
 description **********GPON*****
 ip address 192.168.200.162 255.255.255.252
 ip nat outside
 ip virtual-reassembly in
 duplex auto
 speed auto
!
interface FastEthernet0/1
 description *******WIRELESS********
 ip address 192.168.200.182 255.255.255.252
 ip nat outside
 ip virtual-reassembly in
 duplex auto
 speed auto
!
ip forward-protocol nd
no ip http server
no ip http secure-server
!
!
ip nat pool NAT-POOL 58.27.220.179 58.27.220.180 netmask 255.255.255.248
ip nat inside source list 102 pool NAT-POOL overload
ip route 0.0.0.0 0.0.0.0 192.168.200.161
ip route 0.0.0.0 0.0.0.0 192.168.200.181 20
!
ip sla 10
 icmp-echo 192.168.200.161 source-ip 192.168.200.162
 frequency 5
ip sla schedule 10 life forever start-time now
access-list 102 permit ip any any

.
I’ve tried something but have an issue, after adding src-nat firewall rule in mikrotik my router just unable to talk with 2nd gateway… i don’t know what the reason is… any help regarding this is very thankful…

sorry for bad English…

So that’s two questions in one post :slight_smile:
For the NAT pool, look at this thread - you’ll need to add all addresses to your WAN-facing interface (I’d say a bridge in your case if that should be routed through the two other /30 networks) to use them.

For your default route question I tend to say that your src-nat rule is defined too loosely (i.e. no src-addresses specified) and/or to tight on the out-interface side…
Check the forum and manual for marking connections and routing for dual-wan scenarios, it’s a bit more labor than on other products.

-Chris