went to claude.ai ( haha, so hype ) and it said to me this is know bug
This is a known issue with MikroTik's MBIM (Mobile Broadband Interface Model) driver losing its session with the modem. Here's what's happening and how to fix it:
What's causing it
The modem firmware loses sync with the MBIM control interface — often triggered by weak signal fluctuations, thermal issues, or the modem silently trying to switch bands. The NO_DEVICE_SUPPORT error usually means the modem stopped responding to the driver mid-session.
none of those helped
Fixes to try (in order of effectiveness)
Set a fixed LTE band
Forcing a stable band stops the modem from hunting for 5G or switching bands mid-session:
/interface lte set lte1 band="1,3,7,20"
Adjust band numbers to what your carrier actually uses. This alone fixes the issue for many people.
Add a watchdog script to auto-recover faster
Instead of waiting for the router to self-recover, a script can detect the drop and restart the interface:
/system scheduler add name="lte-watchdog" interval=2m on-event={
if ([/interface lte get lte1 running] = false) do={
/interface lte disable lte1
:delay 5s
/interface lte enable lte1
}
}
Disable 5G/NR entirely in the modem
If the modem keeps probing for NR (5G New Radio) in the background, it can destabilize the LTE session:
/interface lte set lte1 nr-disable=yes
Not all RouterOS versions expose this — check if it's available with ? tab completion.
Lock the network mode explicitly
/interface lte set lte1 network-mode=lte
This prevents the modem from ever attempting 5G fallback negotiation.
Tune the MBIM session keepalive
Some users fix this by lowering the MTU slightly (helps with fragmentation issues that can kill the session):
/interface lte set lte1 mtu=1400
Update RouterOS and modem firmware
MBIM reset bugs are frequently fixed in point releases. Check:
/system package update check-for-updates
And in Winbox: WebFig → System → RouterBOARD → Upgrade to update the modem firmware separately from RouterOS.
Recommended combination
For most people, steps 1 + 4 + the watchdog script resolves this completely. Start there before trying the others.
If the resets still happen after all of the above, it's worth checking the modem temperature — sustained resets can also be a thermal issue, especially in outdoor or enclosed enclosures.