Mikrotik Wireless Client Mode

Reset

/system reset-configuration

Login

Scan

/interface wireless scan wlan1

Configure

/interface wireless security-profiles
add authentication-types=wpa-psk,wpa2-psk \
    management-protection=allowed \
    mode=dynamic-keys \
    unicast-ciphers=tkip,aes-ccm \
    group-ciphers=tkip,aes-ccm \
    name=Bless2Profile \
    supplicant-identity=Bless2 \
    wpa-pre-shared-key=mysecretpassword \
    wpa2-pre-shared-key=mysecretpassword

/interface wireless
set [ find default-name=wlan1 ] \
    disabled=no \
    mode=station \
    security-profile=Bless2Profile \
    ssid=Bless2

/ip dhcp-client
add comment=defconf \
    add-default-route=yes \
    disabled=no \
    interface=wlan1

Remove wlan1 from bridge interface

/interface bridge port print
/interface bridge port remove numbers=1

Add ether1-4 to bridge interface

/interface bridge port add bridge=bridge interface=ether2
/interface bridge port add bridge=bridge interface=ether3
/interface bridge port add bridge=bridge interface=ether4

NAT

/ip firewall nat add chain=srcnat action=masquerade out-interface=wlan1