Hi! I recently changed internet provider, and had to factory reset my MikroTik. Made just basic configuration for small office and vpn.
One thing that stopped working after that - Team Viewer. Everything work well, except this one. It says - “Not ready. Please check your connection”
At first, I thought about DNS (manual 8.8.8.8 and 8.8.4.4), then added ports to firewall, then I tried UPnP and nothing helped.
And one more. I have static IP address, and router receives it automatically (maybe something there?)
Can somebody point me what can it cause? I have the same provider in next building where TP Link installed - everything works well.
If any additional informational needed - just let me know. Thanks!
All done except 2 - it does not allow me to use ‘network’ parameter. There is no such thing
I’m not strong at firewall rules. I was recommended to use what I had to stop all external connections.
I did not update to v7 firmware as this version shown as unstable
Still - no team viewer. I don’t know why
Here is updated settings:
# may/15/2025 16:27:46 by RouterOS 6.48
# software id = BMM5-YT99
# model = RB750Gr3
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] name=ether1-WAN
set [ find default-name=ether5 ] name=ether5-SWITCH
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp ranges=192.168.1.150-192.168.1.220
add name=vpn_pool ranges=10.10.10.10-10.10.10.20
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge1 lease-time=9h name=dhcp1
/ppp profile
add bridge=bridge1 change-tcp-mss=yes name=l2tp remote-address=vpn_pool
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5-SWITCH
/ip neighbor discovery-settings
set discover-interface-list=!dynamic
/interface l2tp-server server
set authentication=mschap2 default-profile=l2tp enabled=yes ipsec-secret=\! use-ipsec=required
/interface list member
add interface=ether1-WAN list=WAN
add interface=bridge1 list=LAN
/ip address
add address=192.168.1.1/24 interface=bridge1 network=192.168.1.0
/ip dhcp-client
add disabled=no interface=ether1-WAN
/ip dhcp-server lease
/ip dhcp-server network
add address=192.168.1.0/24 gateway=192.168.1.1 netmask=24
/ip firewall address-list
add address=192.168.1.17 list=Excluded
add address=192.168.1.102 list=Excluded
/ip firewall filter
add action=accept chain=input connection-state=established,related,untracked
add action=drop chain=input connection-state=invalid
add action=accept chain=input protocol=icmp
add action=accept chain=input dst-port=500,1701,4500 protocol=udp
add action=accept chain=input in-interface-list=LAN src-address-list=Excluded
add action=drop chain=input comment="drop all else"
add action=fasttrack-connection chain=forward connection-state=\
established,related
add action=accept chain=forward connection-state=\
established,related,untracked
add action=drop chain=forward connection-state=invalid
add action=accept chain=forward comment="internet traffic" in-interface-list=\
LAN out-interface-list=WAN
add action=accept chain=forward connection-state=\
established,related,untracked
add action=drop chain=forward connection-state=invalid
add action=accept chain=forward comment="internet traffic" in-interface-list=\
LAN out-interface-list=WAN
add action=accept chain=forward comment="port forwarding" \
connection-nat-state=dstnat disabled=yes
add action=drop chain=forward comment="drop all else"
/ip firewall nat
add action=masquerade chain=srcnat out-interface-list=WAN
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set ssh disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/system watchdog
set watch-address=8.8.8.8
Since you have no firewall rules and all is allowed, yikes, would never connect this to the internet…
No nothing should block it. ( did you try disabling upnp ).
Suspect something on the PC, firewall, new OS, something ???
Yeah, we’re using it now. But some users still asking for TeamViever…
I was trying on different computers, and the same result every time. I even connected PC without router and everything working fine. One thing I noticed.
It all happened after internet provider was changed. Router was factory reset, and new configuration was created. I remember that old configuration had different NAT rule. This one has:
add action=masquerade chain=srcnat out-interface-list=WAN and old one had something with external IP. I’ll try to upload old configuration and export settings when I’ll be there
—update. found some info. I was talking about using action scr-nat + external IP instead of masquerade. I don’t know if it can help)