I just want to make sure I am doing things correctly. We are going to be replacing our mostly maxed out Cisco 3825 router with a RB1000. I am porting our Cisco config to MikroTik and want to make sure I am doing it correctly. Please correct me if I am wrong.
Here is a sample sub-interface on the cisco router:
interface GigabitEthernet0/0.8
description Trango 5800, North of Bowman
encapsulation dot1Q 8
ip address 10.155.0.1 255.255.254.0
ip access-group 130 in
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow egress
ip nat inside
ip policy route-map proxy-redirect
and my plan for the mikrotik:
1)I should create a vlan with a “VLAN ID” of 8 on one of the Ethernet interfaces.
2) add the description as the comment of that vlan
3) add the ip on the vlan interface
4) add firewall rules to recreate the access group, redirects, unreachables
5) “no ip proxy-arp” this is the setting ARP in the vlan, just setting it to “enabled” is what I want to do.
6) /ip traffic-flow is mikrotik’s netflow, enable for any interfaces I want.
7) Nat is done in the firewall, make a srcnat, out. Interface: <interface towards our isp>, action=src=nat, to address=our address pool. Do I need to make a rule for each inside interface and specify the in. interface? In the examples I have seen they don’t specify the incoming interfaces.

Thanks!
Rob