Hello. I’m encountering an issue with a MikroTik Cloud Router and would appreciate some assistance. The setup involves an ISP router that connects to a switch, and from there, we receive the link for internet access. The customer wants to establish a managed network separate from the ISP, allowing them to have more control over their environment.
When I configure the MikroTik Cloud Router as a bridge, everything works perfectly (as it should lol) there’s internet connectivity, DHCP is operational, and devices receive IP addresses as expected. However, when I switch the MikroTik to function as a router (using the Quick Set option in the GUI), internet connectivity stops entirely.
I have attempted various configurations, including:
NAT rules
ACL adjustments
Routing modifications
Despite these efforts, there’s still no internet reachability. Additionally, the NAT rule seems to automatically assign an IP address in the 192.168.x.x range, which does not align with the IP addressing scheme in my network.
I’ve provided a summary of my setup and actions so far to make the issue clearer. Any guidance on resolving this would be greatly appreciated.
Thank you in advance for your help!
P.S. Please bear with me I’m transitioning from another vendor’s ecosystem loool
====================================================
# 2024-12-22 08:54:08 by RouterOS 7.16.2
# software id =
#
# model =
# serial number =
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] name=ISP
/interface vlan
add interface=ether5 name=Server vlan-id=10
/interface list
add name=WAN
add name=LAN
/port
set 0 name=serial0
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ISP trusted=yes
add bridge=bridge1 disabled=yes interface=ether13
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
add bridge=bridge1 interface=ether9
add bridge=bridge1 interface=ether10
add bridge=bridge1 interface=ether11
add bridge=bridge1 interface=ether12
add bridge=bridge1 interface=sfp-sfpplus1
add bridge=bridge1 interface=sfp-sfpplus2
add bridge=bridge1 interface=sfp-sfpplus3
add bridge=bridge1 interface=sfp-sfpplus4
/interface l2tp-server server
set enabled=yes use-ipsec=yes
/interface list member
add interface=ether13 list=WAN
add interface=bridge1 list=LAN
/ip address
add address=10.61.0.27/21 interface=ether13 network=10.61.0.0
add address=10.61.0.80/24 interface=bridge1 network=10.61.0.0
/ip cloud
set ddns-enabled=yes
/ip dhcp-client
add disabled=yes interface=ether13
/ip dhcp-server
add address-pool=dhcp interface=bridge1 lease-time=8h name=dhcp1
/ip dhcp-server network
add address=10.61.0.0/24 dns-server=10.61.0.80 gateway=10.61.0.80 netmask=24
add address=10.61.0.0/21 gateway=10.61.0.27
/ip dns
set allow-remote-requests=yes servers=8.8.8.8,8.8.4.4
/ip firewall nat
add action=masquerade chain=srcnat comment="masq. vpn traffic" src-address=\
192.168.89.0/24
/ip firewall service-port
set rtsp ports=22
/ip ipsec profile
set [ find default=yes ] dpd-interval=2m dpd-maximum-failures=5
/ip pool
add name=vpn next-pool=vpn ranges=192.168.89.2-192.168.89.255
add name=dhcp next-pool=dhcp ranges=10.61.0.50-10.61.2.255
/ip route
add dst-address=0.0.0.0/0 gateway=10.61.0.1
/ip service
set www-ssl disabled=no
/port remote-access
add port=serial0
/ppp profile
set *FFFFFFFE local-address=192.168.89.1 remote-address=vpn
/ppp secret
add name=vpn
/system note
set show-at-login=no
/system routerboard settings
set enter-setup-on=delete-key
============================================================
