second bridge on same board wont forward packets.

Hello.
I have 951Ui-2HnD board, with default initial setup. I added second bridge interface, join couple of ports in it, assign ip to it, configure pool and dhcp server, so now i can ping this interface from “default bridge”, when i plug cable into port i associated with my own bridge i get ip address from dhcp server, but traffic wont flow. Where is my mistake?
Here is my config

[admin@MikroTik] > export
# jan/02/1970 00:25:51 by RouterOS 6.28
# software id = ZGP0-H1S9
#
/interface bridge
add admin-mac=E4:8D:8C:A0:C6:E3 auto-mac=no name=bridge-local
add admin-mac=E4:8D:8C:A0:C6:E4 name=bridge-wifi
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] name=ether3-slave-local
set [ find default-name=ether4 ] master-port=ether2-master-local name=\
    ether4-slave-local
set [ find default-name=ether5 ] master-port=ether2-master-local name=\
    ether5-slave-local
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=\
    20/40mhz-ht-above disabled=no distance=indoors frequency=auto l2mtu=2290 \
    mode=ap-bridge ssid=MikroTik-A0C6E7 wireless-protocol=802.11
/ip neighbor discovery
set ether1-gateway discover=no
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
add name=wifi-dhcp ranges=172.16.0.10-172.16.255.254
/ip dhcp-server
add address-pool=default-dhcp disabled=no interface=bridge-local name=default
add address-pool=wifi-dhcp disabled=no interface=bridge-wifi name=server1
/interface bridge port
add bridge=bridge-local interface=ether2-master-local
add bridge=bridge-wifi interface=wlan1
add bridge=bridge-wifi interface=ether3-slave-local
/ip address
add address=192.168.88.1/24 comment="default configuration" interface=\
    bridge-local network=192.168.88.0
add address=172.16.0.2/32 interface=bridge-wifi network=172.16.0.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=\
    no interface=ether1-gateway
/ip dhcp-server network
add address=172.16.0.0/16 gateway=172.16.0.2 netmask=16
add address=192.168.88.0/24 comment="default configuration" gateway=\
    192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add chain=input comment="default configuration" protocol=icmp
add chain=input comment="default configuration" connection-state=\
    established,related
add action=drop chain=input comment="default configuration" in-interface=\
    ether1-gateway
add chain=forward comment="default configuration" connection-state=\
    established,related
add action=drop chain=forward comment="default configuration" \
    connection-state=invalid
add action=drop chain=forward comment="default configuration" \
    connection-nat-state=!dstnat connection-state=new in-interface=\
    ether1-gateway
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" \
    out-interface=ether1-gateway
/romon port
add disabled=no
/system leds
set 5 interface=wlan1
/system routerboard settings
set protected-routerboot=disabled
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
add interface=wlan1
add interface=bridge-local
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
add interface=wlan1
add interface=bridge-local

I think one problem is the ip address assigned to your wifi bridge is /32 and should be /16.