I’m a newbie in Mikrotik maybe someone out there can help me with my dilemma.
I’m using # model = RB750Gr3 router trying to implement interVLAN routing across multiple ports specifically ports eth3, eth4 and eth5
I segmented my network into multiple VLAN’s directly connected to the router ports are my Linksys Manage Switch in Trunk Port mode
eth5 ↔ linksys trunk port (AVoIP Devices) AVoIP-VL7 vlan-id=7
eth4 ↔ linksys trunk port (CCTV Devices) CCTV-VL10 vlan-id=10
eth3<–> linksys trunk port (PUBLIC WiFi) ELIB-VL87 vlan-id=87
eth3<–> linksys trunk port (IoT Devices) GCCC-VL8 vlan-id=8
eth3<–> linksys trunk port (IP Phone) VOICE-VL9 vlan-id=9
Communications (Ping, Internet, DHCP) from own VLAN to its gateway on router interface has no problem, but across VLAN can’t pass through.
Attached is my router config please guide me where i did wrong or what is missing in my config.
# jun/02/2022 15:36:33 by RouterOS 6.44.5
# software id = SG2V-10C1
#
# model = RB750Gr3
# serial number = C55D0B451512
/interface bridge
add admin-mac=C4:AD:34:C6:0D:66 auto-mac=no name=LAN_BRIDGE
/interface ethernet
set [ find default-name=ether2 ] name=CONVERGE
set [ find default-name=ether1 ] name=GLOBE
set [ find default-name=ether3 ] name=eth3-LAN
set [ find default-name=ether4 ] name=eth4-CCTV
set [ find default-name=ether5 ] name=eth5-AVoIP
/interface vlan
add interface=LAN_BRIDGE name=AVoIP-VL7 vlan-id=7
add interface=LAN_BRIDGE name=CCTV-VL10 vlan-id=10
add interface=eth3-LAN name=ELIB-VL87 vlan-id=87
add interface=eth3-LAN name=GCCC-VL8 vlan-id=8
add interface=eth3-LAN name=VOICE-VL9 vlan-id=9
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/ip pool
add name=dhcp_88 ranges=192.168.88.10-192.168.88.254
add name=dhcp_pool_vl10 ranges=10.10.10.51-10.10.10.70
add name=dhcp_pool_vl87 ranges=192.168.87.1-192.168.87.253
add name=dhcp_pool_vl9 ranges=10.10.9.11-10.10.9.253
add name=dhcp_pool_vl8 ranges=10.10.8.20-10.10.8.253
add name=dhcp_pool_vl7 ranges=10.10.7.1-10.10.7.10
/ip dhcp-server
add address-pool=dhcp_88 disabled=no interface=LAN_BRIDGE name=dhcp_88
add address-pool=dhcp_pool_vl10 disabled=no interface=CCTV-VL10 name=\
dhcp_VL10
add address-pool=dhcp_pool_vl87 disabled=no interface=ELIB-VL87 name=\
dhcp_VL87
add address-pool=dhcp_pool_vl9 disabled=no interface=VOICE-VL9 name=dhcp_VL9
add address-pool=dhcp_pool_vl8 disabled=no interface=GCCC-VL8 name=dhcp_VL8
add address-pool=dhcp_pool_vl7 disabled=no interface=AVoIP-VL7 name=dhcp-VL7
/interface bridge port
add bridge=LAN_BRIDGE interface=eth3-LAN
add bridge=LAN_BRIDGE interface=eth5-AVoIP
add bridge=LAN_BRIDGE interface=eth4-CCTV
/ip neighbor discovery-settings
set discover-interface-list=all
/interface list member
add comment=defconf interface=LAN_BRIDGE list=LAN
add comment=defconf interface=GLOBE list=WAN
add interface=CONVERGE list=WAN
add interface=CCTV-VL10 list=LAN
add interface=ELIB-VL87 list=LAN
add interface=GCCC-VL8 list=LAN
add interface=AVoIP-VL7 list=LAN
/ip address
add address=192.168.88.1/24 interface=LAN_BRIDGE network=192.168.88.0
add address=10.10.10.254/24 interface=CCTV-VL10 network=10.10.10.0
add address=192.168.87.254/24 interface=ELIB-VL87 network=192.168.87.0
add address=10.10.7.254/24 interface=AVoIP-VL7 network=10.10.7.0
add address=192.168.5.254/24 interface=AVoIP-VL7 network=192.168.5.0
add address=10.10.8.254/24 interface=GCCC-VL8 network=10.10.8.0
add address=10.10.9.254/24 interface=VOICE-VL9 network=10.10.9.0
/ip dhcp-client
add comment=defconf dhcp-options=hostname,clientid disabled=no interface=\
GLOBE
add default-route-distance=2 dhcp-options=hostname,clientid disabled=no \
interface=CONVERGE
/ip dhcp-server lease
add address=192.168.88.11 client-id=1:fe:fb:e8:ac:b5:cc mac-address=\
FE:FB:E8:AC:B5:CC server=dhcp_88
/ip dhcp-server network
add address=10.10.7.0/24 gateway=10.10.7.254
add address=10.10.8.0/24 gateway=10.10.8.254
add address=10.10.9.0/24 gateway=10.10.9.254
add address=10.10.10.0/24 gateway=10.10.10.254
add address=192.168.87.0/24 gateway=192.168.87.254
add address=192.168.88.0/24 comment=defconf gateway=192.168.88.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8
/ip dns static
add address=192.168.88.1 name=router.lan
/ip firewall filter
add action=accept chain=input comment=\
"defconf: accept established,related,untracked" connection-state=\
established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
connection-state=established,related
add action=accept chain=forward comment=\
"defconf: accept established,related, untracked" connection-state=\
established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
connection-state=invalid
add action=drop chain=forward comment=\
"defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
connection-state=new in-interface-list=WAN
/ip firewall mangle
add action=accept chain=prerouting dst-address=10.10.10.0/24
add action=mark-routing chain=prerouting new-routing-mark=TO-CONVERGE \
passthrough=yes src-address=10.10.10.0/24
add action=mark-routing chain=prerouting disabled=yes new-routing-mark=\
TO-CONVERGE passthrough=yes src-address=192.168.87.0/24
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" \
ipsec-policy=out,none out-interface-list=WAN
/ip route
add distance=2 gateway=192.168.100.1 routing-mark=TO-CONVERGE
add distance=1 gateway=192.168.254.254 routing-mark=TO-GLOBE