Mikrotiks' equivalent to Ciscos Local Proxy-ARP?

Dear Community,

As an ISP I’m trying to setup a customer network based on privat vlan:s so that I can use fairly large network masks (and thereby save addresses) but still stop them from seeing eachothers broadcasts, just as most other ISP:s does on their DSL-lines and most other internet connections.
Problem is that I cannot find a function similar to Ciscos Local Proxy-ARP, which short said means proxy-arping on just one physical interface.
Is there someone who has an idea of what the function could be called and where it could be found?
Or might it actually be so that it’s not yet implemented?

Best regards

maybe you are looking for this option:

/interface ethernet set 3 arp=proxy-arp

where 3 is the third interface in the list (not ether3) where you would want to change the arp.
You can get the list of interfaces with print command:

/interface ethernet print

Hi!

I did some experimenting, and this works. You have to use a bridge interface, but you don't have to use more than one interface. Hope this helps. There is also a bug in the winbox interface which don't allow you to set gratious arp to no, you have to set it to auto instead. I can not guarantee that it is 100% Cisco compatible, but I think it is.

This is local proxy-arp on ether1 for the 192.168.88.0/24 net

/interface ethernet
set ether1 mac-address=00:01:02:03:04:05

/interface bridge
add l2mtu=1598 name=bridge1

/interface bridge nat
add action=arp-reply arp-gratuitous=no chain=dstnat mac-protocol=arp to-arp-reply-mac-address=00:01:02:03:04:05

/interface bridge port
add bridge=bridge1 interface=ether1

/ip address
add address=192.168.88.1/24 interface=bridge1

Dear, mikrotik! What do you think about the “loсal proxy arp”. It exists in many L3 routers. Why not? :slight_smile:
This functionality is very requested by many operators.
Thank you!

I know this is an old thread, but are there any news on this subject?

I’ve got several customers that needs the “local proxy-arp” functionality.

As of 6.38rc7 there is a new ARP reply option on bridges “local-proxy-arp”

This allows for PVLAN type functionality on Mikrotik bridges.