Fastpath doesn't seem to work

I’m not sure what I’m missing but I can’t seem to get fastpath working on RB750GL. ROS 6.30.4

I have simply bridged the interfaces.
Fastpath is checked under IP services
No firewall rules.
Connection tracking is off.
No queues

All the other conditions under http://wiki.mikrotik.com/wiki/Manual:Fast_Path seem to be met yet the IP4 fastpath remains unchecked with no packets showing.?

What interfaes do you use? what other config do you have?

Config below, have replaced sensitive bits with XXX

Pretty much all it's doing is routing.
DHCP is on.
OSPF is disabled.
Firewall rules, NAT disabled.
Bridge filters disabled
No queues yet..

\

aug/31/2015 20:52:59 by RouterOS 6.30.4

software id = ZJUV-T0WC

/interface ethernet
set [ find default-name=ether2 ] name=ether2-WEST
set [ find default-name=ether3 ] l2mtu=1600 name=ether3-Backhaul
set [ find default-name=ether4 ] name=ether4-Tycon
set [ find default-name=ether5 ] name=ether5-SOUTH-EAST
/interface bridge
add mtu=1500 name=br-layer2
/ip neighbor discovery
set ether2-WEST discover=no
set ether3-Backhaul discover=no
set ether5-SOUTH-EAST discover=no
set br-layer2 discover=no
/ip pool
add name=dhcp_pool1 ranges=XXX.XXX.XXX.2/31
/ip dhcp-server
add address-pool=dhcp_pool1 disabled=no interface=br-layer2 lease-time=
3d name=dhcp1
/routing ospf instance
set [ find default=yes ] disabled=yes router-id=172.16.171.1
/snmp community
set [ find default=yes ] addresses=XXX.XXX.XXX.200/32
/interface bridge filter
add action=drop chain=forward disabled=yes ip-protocol=igmp mac-protocol=ip
add action=drop chain=input comment="Block DHCP on backhaul" disabled=yes
dst-address=255.255.255.255/32 dst-port=67 in-interface=ether3-Backhaul
ip-protocol=udp mac-protocol=ip src-port=68
/interface bridge port
add bridge=br-layer2 interface=ether1
add bridge=br-layer2 disabled=yes interface=ether3-Backhaul
add bridge=br-layer2 horizon=1 interface=ether2-WEST
add bridge=br-layer2 horizon=1 interface=ether5-SOUTH-EAST
add bridge=br-layer2 interface=ether4-Tycon
/ip firewall connection tracking
set enabled=no
/ip address
add address=10.63.1.254/8 comment="default configuration" disabled=yes
interface=br-layer2 network=10.0.0.0
add address=XXX.XXX.XXX.1/27 interface=br-layer2 network=XXX.XXX.XXX.0
add address=172.16.171.1/27 interface=br-layer2 network=172.16.171.0
add address=172.16.1.28/29 interface=ether3-Backhaul network=172.16.1.24
add address=172.16.171.24 comment="XXX.XXX.XXX Tunnel" interface=
ether2-WEST network=XXX.XXX.XXX.212
add address=172.16.171.25 comment="XXX.XXX.XXX Tunnel" interface=
ether5-SOUTH-EAST network=XXX.XXX.XXX.41
/ip dhcp-server network
add address=XXX.XXX.XXX.XXX/27 dns-server=XXX.XXX.XXX.1,XXX.XXX.XXX.1 gateway=
XXX.XXX.XXX.1
/ip firewall address-list
add address=XXX.XXX.XXX.0/27 list=network_admins
/ip ipsec policy
set 0 disabled=yes
/ip route
add distance=1 gateway=172.16.1.25
/ip service
set telnet disabled=yes
set www disabled=yes
/routing ospf interface
add authentication=md5 authentication-key=XXXXXXXX network-type=broadcast
add authentication=md5 authentication-key=XXXXXXXX interface=br-layer2
network-type=broadcast
/routing ospf network
add area=backbone
/snmp
set contact=alerts@XXX.XXX.XXX enabled=yes location=XXXXX trap-generators=
interfaces trap-interfaces=all trap-target=XXX.XXX.XXX.XXX trap-version=3
/system identity
set name=north_tower
/system logging
set 0 disabled=yes
add topics=interface
add topics=dhcp
add topics=firewall
/system ntp client
set enabled=yes primary-ntp=172.16.1.2 secondary-ntp=172.16.1.2
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2-WEST
add interface=ether3-Backhaul
add interface=ether4-Tycon
add interface=ether5-SOUTH-EAST
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-WEST
add interface=ether3-Backhaul
add interface=ether4-Tycon
add interface=ether5-SOUTH-EAST
/tool romon port
add

As far as i can see, bridge filer stops you from using bridge fastpath, try diabling it, to see if that helps.

They’re disabled anyway. I only used them temporarily whilst converting network from bridged to routed.

add action=drop chain=forward disabled=yes ip-protocol=igmp mac-protocol=ip
add action=drop chain=input comment=“Block DHCP on backhaul” disabled=yes \