MikroTik LTE Configuration Guide

Summary

This document provides a comprehensive overview of LTE client configuration and management within RouterOS. It covers basic setup, advanced features, and troubleshooting for MikroTik devices equipped with LTE modems.

LTE Client

The LTE client allows for the configuration and management of LTE interfaces. Support for Direct-IP mode is available in RouterOS v7 and later. For older versions, PPP emulation can be used, though it may offer lower throughput.

Properties

PropertyDescription
allow-roamingEnables data roaming for connecting to other countries' data providers. Not all modems fully support this feature.
apn-profilesSpecifies the APN profile to use for the interface.
bandLTE Frequency band used for communication.
nr-band5G NR Frequency band used for communication.
commentA descriptive name for the item.
disabledEnables or disables the interface.
modem-initModem initialization string (AT command executed at modem startup).
mtuMaximum Transmission Unit, defining the maximum packet size.
nameA descriptive name for the interface.
network-modeSelects the operating mode for the LTE interface (e.g., 3G, GSM, LTE, 5G).
operatorUsed to lock the device to a specific operator using the PLMN number.
pinSIM Card's PIN code.

APN Profiles

Network-related settings are managed through APN profiles, starting from RouterOS 6.41.

Properties

PropertyDescription
add-default-routeDetermines whether to add a default route for forwarding traffic over the LTE interface.
apnService Provider's Access Point Name.
authenticationAllowed protocol for authentication (PAP, CHAP, none).
default-route-distanceSets the distance value for auto-created default routes.
ip-typeRequested PDN type (IPv4, IPv4/IPv6, IPv6).
ipv6-interfaceInterface on which to advertise the IPv6 prefix.
nameAPN profile name.
numberAPN profile number.

LTE Settings

LTE and router-specific LTE settings are available starting from RouterOS v7.

Properties

PropertyDescription
modeOperation mode setting (auto, MBIM, serial).
firmware-pathFirmware path in the host OS.
external-antennaConfigures external antenna usage for Chateau routers (auto, both, div, main, none).
external-antenna-selectedShows the currently selected antenna when external-antenna is set to 'auto'.
sim-slotSelects the SIM slot for devices with switchable SIM slots.

Scanner

The /interface lte scan command can be used to scan LTE interfaces. It provides information such as OPERATOR, MCC-MNC, RSSI, RSRP, and RSRQ.

Available properties

PropertyDescription
durationDuration of the scan in seconds.
freeze-frame-intervalTime between data printouts.
numberInterface number or name.

User Info command

The /interface lte info command retrieves detailed information about the LTE interface. In RouterOS v7, this command is moved to the /interface lte monitor menu.

User at-chat command

The /interface lte at-chat command allows sending user-defined AT commands to the LTE interface. The wait=yes parameter can be used to wait for a response.

Quick setup example

This section provides a step-by-step guide for setting up network connections using LTE APN profiles.

  1. Add a new APN profile: /interface lte apn add name=profile1 apn=phoneprovider.net authentication=chap password=web user=web
  2. Select the newly created profile: /interface lte set [find] apn-profiles=profile1

After successful configuration, the LTE interface should appear with a running (R) flag.

Passthrough Example

The Passthrough feature allows IP configuration to be applied directly to a client device. This is useful when the modem firmware handles IP configuration, and the router is used only for modem settings.

Note: Passthrough is not supported by all chipsets.

Examples

Dual SIM

This section details the configuration for devices with switchable SIM slots.

Boards with switchable SIM slots

RouterBoardModem slotSIM slotsSwitchable
LtAPlower2|3Y
LtAP miniupper1N
LtAP miniup | downY
SXT Ra | bY

SIM slots switching commands

Tips and Tricks

This section provides additional information for features and usage cases.

Find device location using Cell information

Information such as current operator, LAC, and cell ID can be obtained using the info command for devices with R11e-LTE International version cards.

Using Cell lock

Cell lock allows users to lock LTE modems to a specific LTE tower. The lte info command provides the currently used cellular tower information, including phy-cellid and earfcn.

AT commands can be used to lock the modem to a specific tower. For example, to lock to a tower with earfcn 1300 and PCI 384:

/interface lte at-chat ltel input="AT*Cell=2,3,,1300,384"

Note: For R11e-LTE, cell lock information may be lost after a reboot or modem reset. For R11e-LTE6, cell lock works on the primary band.

Cell Monitor

The /interface lte cell-monitor command allows scanning available nearby mobile network cells, providing data like PHY-CELLID, BAND, EARFCN, RSRP, RSRQ, RSSI, and SINR.

Troubleshooting

This section covers common troubleshooting steps for LTE connections.

Enable LTE logging

Enable LTE logging with: /system logging add topics=lte

Check for errors in the log using: /log print

If a CME error occurs, search online for its description. For example, CME error 10 indicates that the SIM card is not inserted.

Locking band on Huawei and other modems

To lock a band on Huawei modems, AT commands can be used. The AT^SYSCFGEX command can be used to check supported bands and to set the desired band.

Example to lock to LTE band 7:

/interface lte set ltel modem-init="AT^SYSCFGEX=\"03\",3FFFFFFF,2,4,40,,,"

For more information on band HEX values and AT commands, refer to the Huawei AT Command Interface Specification guide.

mPCIe modems with RB9xx series devices

If a modem is not recognized after a soft reboot, a delay might be needed before USB port initialization. Use the following command:

/system routerboard settings set init-delay=5s

Boards with USB-A port and mPCIe

For devices sharing USB lines between mPCIe and USB-A ports, manual switching might be necessary if auto-switch fails. Use:

/system routerboard usb set type=mini-PCIe

Modem firmware upgrade

Before upgrading, ensure RouterOS is updated to the latest version. Firmware upgrades are available via FOTA (Firmware Over The Air) or from a file.

Check currently used firmware version:

/interface lte info ltel once

Check if new firmware is available:

/interface lte firmware-upgrade ltel

Upgrade firmware with:

/interface lte firmware-upgrade ltel upgrade=yes

Avoiding tethering speed throttling

Some operators limit tethering speeds. RouterOS allows changing the TTL parameter to help bypass these limitations. This may conflict with fair use policies.

IPv4 mangle rule:

/ip firewall mangle add action=change-ttl chain=postrouting new-ttl=set:65 out-interface=ltel passthrough=yes

IPv6 mangle rule:

/ipv6 firewall mangle add action=change-hop-limit chain=postrouting new-hop-limit=set:65 passthrough=yes

Unlocking SIM card after multiple wrong PIN code attempts

If a SIM card is locked, it can be unlocked using AT commands. Check PIN code status with:

/interface lte at-chat ltel input="at+cpin\?"

To unlock, provide the PUK code and the new PIN:

/interface lte at-chat ltel input="AT+CPIN=\"PUK_code\",\"NEW_PIN\""

PDF preview unavailable. Download the PDF instead.

LTE f3de8812cc8e4dc0abae8278b15edc04-090224-0203-8582

Related Documents

Preview MikroTik LTE Guide: Configuration and Troubleshooting
Comprehensive guide to configuring and troubleshooting MikroTik LTE devices, covering APN profiles, network modes, cell monitoring, and advanced features like passthrough and cell locking.
Preview MikroTik WAP LTE Kit: Versatile Wireless Access Point
Explore the MikroTik WAP LTE kit, a weatherproof wireless access point with built-in cellular modem supporting 2G, 3G, and 4G (LTE) connectivity. Learn about its features, specifications, and various mounting options for home, outdoor, and mobile use.
Preview MikroTik WAP LTE Kit: Weatherproof Wireless Access Point
Discover the MikroTik WAP LTE kit, a durable, weatherproof wireless access point with integrated 4G/LTE modem, 802.11b/g/n Wi-Fi, and multiple powering options for versatile deployment in homes, vehicles, and public transport.
Preview MikroTik LHGG LTE6 Kit Quickstart and Installation Guide
A comprehensive guide to setting up and installing the MikroTik LHGG LTE6 Kit, including quickstart instructions, case assembly, miniPCIe slot usage, powering, mounting, and configuration details.
Preview MikroTik Quick Guide G15: LtAP & wAP Series Wireless Devices
Quick start guide for MikroTik LtAP mini and wAP series wireless networking devices. Covers initial setup, safety, and specifications for professional use. Includes models like RB912R, RBwAPR.
Preview MikroTik hAP ac³ LTE6 Quick Guide
This quick guide provides essential information for setting up and using the MikroTik hAP ac³ LTE6 wireless router, including model details, first steps, safety precautions, and technical specifications.
Preview MikroTik ATL LTE18 kit (ATLGM&EG18-EA) User Manual and Quickstart Guide
Comprehensive user manual and quickstart guide for the MikroTik ATL LTE18 kit (ATLGM&EG18-EA), covering safety, setup, powering, mounting, configuration, specifications, and CE declarations.
Preview MikroTik Product Catalog 2025 Q1/Q2
MikroTik's 2025 Q1/Q2 Product Catalog features a comprehensive range of networking hardware including routers, switches, LTE/5G, and IoT devices. Discover innovative solutions for home, business, and enterprise from MikroTik.