Hello everyone.
In the previous topic I was fiting with bridge filtering http://forum.mikrotik.com/t/better-way-to-pass-wan-untagged-to-lan-tagged/137155/1
I was able to configure the following:

_
/interface ethernet
set [ find default-name=ether1 ] name=ether1-wan
/interface vlan
add interface=ether1-wan name=vlan10-wan vlan-id=10
/interface bridge
add name=br protocol-mode=none
/interface bridge port
add bridge=br interface=wlan24
add bridge=br interface=wlan50
add bridge=br interface=ether2
add bridge=br interface=ether3
add bridge=br interface=ether4
add bridge=br interface=ether5
add bridge=br interface=wlan24.1
add bridge=br interface=wlan50.1
add bridge=br interface=ether1-wan
/interface ethernet switch port
set 0 default-vlan-id=10 vlan-mode=secure
set 1 vlan-mode=secure
set 2 vlan-mode=secure
set 3 vlan-mode=secure
set 4 vlan-mode=secure
set 5 vlan-mode=secure
/interface ethernet switch vlan
add independent-learning=no ports=ether2,ether3,ether4,ether5,switch1-cpu switch=switch1 vlan-id=1
add independent-learning=no ports=ether1-wan,ether2,switch1-cpu switch=switch1 vlan-id=10
So, my router got 176.38.50.85/14 from a ISP via DHCP on vlan10-wan:
0 vlan10-wan no yes bound 176.38.50.85/14
DAd 0.0.0.0/0 176.36.0.1 1
DAC 10.10.10.0/24 br 0
DAC 176.36.0.0/14 vlan10-wan 0
and my server (connected to ether2) got 176.38.50.112/14 also from the ISP via DHCP:
vlan10: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 176.38.50.112 netmask 255.252.0.0 broadcast 176.39.255.255
0.0.0.0 176.36.0.1 0.0.0.0 UG 0 0 0 vlan10
176.36.0.0 0.0.0.0 255.252.0.0 U 0 0 0 vlan10
NAT users in the VLAN1 are able to access the internet as well the server is able to access the internet via vlan10.
The only problem is that both router and server are unable to ping each other, i.e. 176.38.50.85/14 ↔ 176.38.50.112/14, and NAT users are unable to ping server 176.38.50.112/14.
What is my mistake?