have CCR1009 at home. Have 2x UniFi AP.
eth1: WAN (pppoe)
eth5: unifi 1
eth6: unifi 2
Have bridge and there are eth2-eth7 (all ethernets)
In Unifi I created guests wifi network with vlan 20.
My question is how can I make bridge for vlan20? Created vlan in mikrotik too for bridge-wifi-guests.
If I create another bridge called bridge-unifi and add eth5 and eth6 there, unifi stop work and can't ping them.
Will be really thankful for your detailed help.
/interface export
/interface bridge
add arp=proxy-arp fast-forward=no name=bridge
add name=bridge-unifi
/interface ethernet
set [ find default-name=combo1 ] disabled=yes
set [ find default-name=ether1 ] comment=Gateway speed=100Mbps
set [ find default-name=ether2 ] comment="NAS" speed=100Mbps
set [ find default-name=ether3 ] comment="LAPTOP" speed=100Mbps
set [ find default-name=ether4 ] comment="Gigabit Switch" speed=100Mbps
set [ find default-name=ether5 ] comment="UniFi AP-AC-PRO #1" speed=100Mbps
set [ find default-name=ether6 ] comment="UniFi AP-AC-PRO #2" speed=100Mbps
set [ find default-name=ether7 ] comment="Server" speed=100Mbps
/interface pppoe-client
add add-default-route=yes dial-on-demand=yes disabled=no interface=ether1 name=pppoe-out1 password=********** \
use-peer-dns=yes user=**********
/interface vlan
add interface=bridge-unifi name=vlan20-wifi-guests vlan-id=20
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/interface bridge port
add bridge=bridge interface=ether2
add bridge=bridge interface=ether3
add bridge=bridge interface=ether4
add bridge=bridge-unifi interface=ether5
add bridge=bridge-unifi interface=ether6
add bridge=bridge interface=ether7
/ip address
add address=10.31.0.1/24 interface=bridge network=10.31.0.0
add address=10.31.20.1/27 interface=vlan20-wifi-guests network=10.31.20.0
/ip dhcp-server
add disabled=no interface=bridge lease-time=1d name=dhcp
add address-pool=wifi-guests-pool disabled=no interface=bridge-unifi lease-time=1h name=dhcp-wifi-guests
/ip pool
add name=dhcp_pool ranges=10.31.0.201-10.31.0.210
add name=wifi-guests-pool ranges=10.31.20.2-10.31.20.30