Connect MAP to RB2011 via wifi (station)

Hello,
i need to connect a MAP via wireless connection to my RB2011 (caps), to provide an ethernet port to my printer.
The RB2011(&other wlan devices, like HAP&Groove) is managed by an RB3011 capsman.

I tried the following modes:

station → wifi connection ok
station pseudobridge → wifi connection ok
station pseudobridge clone → wifi connection ok
station bridge → wifi does not connect

I followed exactly the following wiki:
https://wiki.mikrotik.com/wiki/Connect_to_an_Available_Wireless_Network

unfortunately, the printer on one of the ethernet ports does not get an IP from my main DHCP server (rb3011)
So i configured a DHCP relay. I can see requests coming in, but the printer does not get an IP.
Also tried to configure a separate dhcp server on the MAP (with same subnet, the printer get’s an ip, but traffic is not routed correctly, and tried with different subnet)

In firewall i allowed everything for forwarding, input & output (just to be sure)
Security is not important in this situation, every traffic can pass.

I also tried to put the wlan1 interface to the bridge (with eth1&2).

Traffic does not pass, either no ip, bad routing, etc.

Does anyone have an idea, or tutorial how to configure?
Thanks alot!

Remove all firewall rules and nat. Put wlan and ethx in a bridge. Setup wlan as a station .
Eventually assign a dhcp client to the bridge.

Thanks for your post.
I have reset a test device (rb951). Then changed the configuration as on the wiki, then done your tips.
(added dhcp client and relay to the bridge, all FW & nat rules deleted)
The printer get’s an ip this time. but no traffic is passing

can’t ping from my AP to the station nor station to AP. (so any other traffic that should pass both MT neither pass.)


export compact:

/interface bridge
add admin-mac=D4:CA:6D:0D:BC:5B auto-mac=no comment=defconf name=bridge
/interface ethernet
set [ find default-name=ether2 ] name=ether2-master
set [ find default-name=ether3 ] master-port=ether2-master
set [ find default-name=ether4 ] master-port=ether2-master
set [ find default-name=ether5 ] master-port=ether2-master
/ip neighbor discovery
set ether1 discover=no
/interface wireless security-profiles
add authentication-types=wpa2-psk eap-methods=“” management-protection=allowed mode=dynamic-keys name=xxxxxxx supplicant-identity=“” wpa2-pre-shared-key=xxxxxxx
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=20/40mhz-Ce disabled=no distance=indoors frequency=auto security-profile=xxxxxxx ssid=xxxxxxx wireless-protocol=802.11
/interface bridge port
add bridge=bridge comment=defconf interface=ether2-master
add bridge=bridge comment=defconf interface=wlan1
/ip dhcp-client
add comment=defconf dhcp-options=hostname,clientid disabled=no interface=bridge
/ip dhcp-relay
add dhcp-server=192.168.215.154 disabled=no interface=bridge name=relay1
/ip dns
set allow-remote-requests=yes
/system routerboard settings
set init-delay=0s silent-boot=yes
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=bridge
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=bridge

Can you post an export configuration

Sorry, do you mean the binary backup file?


this is the /export command:

/interface bridge
add admin-mac=D4:CA:6D:0D:BC:5B auto-mac=no comment=defconf name=bridge
/interface ethernet
set [ find default-name=ether2 ] name=ether2-master
set [ find default-name=ether3 ] master-port=ether2-master
set [ find default-name=ether4 ] master-port=ether2-master
set [ find default-name=ether5 ] master-port=ether2-master
/ip neighbor discovery
set ether1 discover=no
/interface wireless security-profiles
add authentication-types=wpa2-psk eap-methods=“” management-protection=
allowed mode=dynamic-keys name=wlan supplicant-identity=“”
wpa2-pre-shared-key=xxxxx
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=20/40mhz-Ce
disabled=no distance=indoors frequency=auto security-profile=wlan ssid=
xxxxx wireless-protocol=802.11
/interface bridge port
add bridge=bridge comment=defconf interface=ether2-master
add bridge=bridge comment=defconf interface=wlan1
/ip dhcp-client
add comment=defconf dhcp-options=hostname,clientid disabled=no interface=
bridge
/ip dhcp-relay
add dhcp-server=192.168.215.154 disabled=no interface=bridge name=relay1
/ip dns
set allow-remote-requests=yes
/system routerboard settings
set init-delay=0s silent-boot=yes
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=bridge
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=bridge

Sorry, here is the complete export.
my-backup-verbose-no-passwords.rsc (24.1 KB)