/interface bridge
add admin-mac=B8:69:F4:7F:9B:C1 auto-mac=no name=bridgeLAN
/interface bridge port
add bridge=bridgeLAN interface=ether2LAN
add bridge=bridgeLAN interface=ether3LAN
add bridge=bridgeLAN interface=ether4LAN
add bridge=bridgeLAN interface=ether5LAN
add bridge=bridgeLAN interface=wlan1WIFI.2.4
add bridge=bridgeLAN interface=wlan2WIFI.5
/ip firewall filter
add action=accept chain=input in-interface=bridgeLAN
add action=drop chain=input log=yes log-prefix=DROP
/ip address
add address=10.111.112.1/24 interface=bridgeLAN network=10.111.112.0
From mikrotik console
ping 10.111.112.1
SEQ HOST SIZE TTL TIME STATUS
0 10.111.112.1 timeout
1 10.111.112.1 timeout
sent=2 received=0 packet-loss=100%
Log output :
12:48:30 firewall,info DROP input: in:(unknown 1) out:(unknown 0), proto ICMP (type 8, code 0), 10.111.112.1->10.111.112.1, len 56
12:48:31 firewall,info DROP input: in:(unknown 1) out:(unknown 0), proto ICMP (type 8, code 0), 10.111.112.1->10.111.112.1, len 56
Question : WHY ?????
Update 1:
ping 10.111.112.1 interface=bridgeLAN
SEQ HOST SIZE TTL TIME STATUS
0 10.111.112.1 timeout
1 10.111.112.1 timeout
sent=2 received=0 packet-loss=100%
Route :
DST-ADDRESS PREF-SRC GATEWAY DISTANCE
7 ADC 10.111.112.0/25 10.111.112.1 bridgeLAN 0
Update 2:
if to add in firewall
add action=accept chain=input log=yes log-prefix=LOCAL src-address-type=local
then it is start to work but this is not a solution . Still exist following questions :
- Why it bind ip address to hidden loopback ?
- How to remove ip address from hidden loopback and force bind to interface i choose ?
Update 3:
Such problem persist only on Hex and HAP series, On CCR and at least RB3011 everything working correct.