Setup additional Mikrotik as Ap and Switch

Hi All,

We have 2x MikroTik HapAc2 devices, (A) in the main house and (B) in the cottage a couple of meters away.

  • MikroTik (A) consist of configurations + CAPsMan configured
  • MikroTik (B) has no configuration but getting the CAPsMan configuration from MikroTik (A)

The issue that I am experiencing is that the ethernet ports on MikroTik (B) are not getting a DHCP or DNS from MikroTik (A) meaning that only the Wi-Fi on MikroTik (B) is working.

What am I missing or what configuration is needed on MikroTik (A) or (B) to get this working?

Your assistance would be appreciated.

I think by resetting B to CAPS Mode your problem will be solved.

If you post the current B config, we can know for sure:

/export file=anynameyoulike

Remove serial and any other private info.

There is almost no configuration, Exported below:

# 2024-07-03 10:37:27 by RouterOS 7.15.1
# software id = I831-ZBIL
#
# model = RBD52G-5HacD2HnD
/interface bridge
add name=Bridge_Interfaces
/interface wireless
# managed by CAPsMAN
# channel: 2452/20-Ce/gn(-3dBm), SSID: CottageWifi, CAPsMAN forwarding
set [ find default-name=wlan1 ] ssid=MikroTik
set [ find default-name=wlan2 ] ssid=MikroTik
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/interface bridge port
add bridge=Bridge_Interfaces interface=ether2
add bridge=Bridge_Interfaces interface=ether3
add bridge=Bridge_Interfaces interface=ether4
add bridge=Bridge_Interfaces interface=ether5
/interface wireless cap
# 
set discovery-interfaces=ether1 enabled=yes interfaces=wlan1
/ip firewall service-port
set ftp disabled=yes
set tftp disabled=yes
set h323 disabled=yes
set sip disabled=yes
set pptp disabled=yes
/system identity
set name=Mikrotik_Cottage
/system note
set show-at-login=no
/system package update
set channel=long-term

Move capsman discovery to Bridge_Interfaces interface and add ether1 to bridge Bridge_Interfaces .

Thanks mkx,

That worked.