How to accurately determine the model of the Xiaomi router: from sticker to command line

Have you bought a used Xiaomi router, lost your box, or simply forgotten your router model? Without the exact model name, itโ€™s hard to download the right firmware, find a setup instruction, or even buy compatible accessories. In this article, weโ€™ll go through all the possible ways, from obvious (inspection of the case) to technical (analysis of MAC- addresses and SSH- access).

Complicating the problem, Xiaomi has dozens of router models, from the budget Mi Router 4A to the flagship AX9000, and their appearance is often similar. In addition, the Chinese versions (for example, with the prefix R in the name) can differ from the global ones, which is critical when choosing firmware.

We have collected 7 universal methods that work even if you do not have access to the web interface or the router does not turn on. Choose the right one depending on your situation - from simple to complex.

1. Inspection of the case and the factory sticker

The fastest way is to look at the device carefully, and most Xiaomi routers have a model that says:

  • ๐Ÿ“Œ On the bottom sticker (under rubber legs or on the body) look for the Model, Type, or simply the name (e.g. Mi Router 4C).
  • ๐Ÿท๏ธ On the box, if it is preserved, the model is usually duplicated on the end or under the barcode.
  • ๐Ÿ” On the back of some models (e.g. AX3600) - the name is engraved in small print.

Please note the additional markings:

  • ๐ŸŒ CN - Chinese version (may not support some Wi-Fi channels in Russia).
  • ๐ŸŒ Global or RU is an international/Russian firmware.
  • โšก Pro, Lite, Gigabit are modifications of a single model (e.g., Mi Router 4 vs Mi Router 4 Pro).

โš ๏ธ Warning: On some routers (e.g., Mi Router 3G), the sticker may be hidden under a removable antenna cover, and tuck it carefully with a plastic card so that the mounts are not damaged.

What to do if the sticker is erased?
If the labels are not readable, try taking a close-up picture of them and increasing contrast in a graphics editor (like the Snapseed or Lightroom app), sometimes lighting the sticker with an angled flashlight helps.

2. Verification through the router web interface

If the router is on and connected to the network, you can access the control panel even without the Internet.

  1. Connect to the routerโ€™s Wi-Fi network (or connect it to your computer with a LAN cable).
  2. Open your browser and type in the address bar: 192.168.31.1 (for most Xiaomi models) or miwifi.com.
  3. Enter the username / password (by default - admin/ password from the sticker or empty password).

The router model is displayed:

  • ๐Ÿ“ฑ In the upper right corner of the home page (e.g., MiWiFi R3G).
  • ๐Ÿ”ง In the Status โ†’ Device section (for firmware in English โ€“ Status โ†’ Device Info).
  • โ„น๏ธ In the basement of the page (footer) next to the firmware version.
Model on the stickerDisplay in the web interfaceNote
Mi Router 4AR4A or MiWiFi R4AIt can be different for the Chinese (R4AC) and global versions.
AX3600RA79 or MiWiFi RA79The internal designation of the platform.
Mi Router ProR2DThe older model is often confused with the Mi Router 3 Pro.

โš ๏ธ Warning: If the page does not open after entering 192.168.31.1, check the network settings on your computer: IP must be in the range 192.168.31.x (e.g., 192.168.31.100).

๐Ÿ“Š What do you think is the most reliable way to define a model?
By the router sticker.
Through the web interface
Using the Mi Home app
Through the command line
Another way.

3 Use of the Mi Home application

The official Mi Home app (available for Android and iOS) automatically determines the model of the connected router.

Connect to the Wi-Fi router|Open the Mi Home app|Go to the "Devices" section"|Choose your router|Press three points (โ‹ฎ) โ†’ "Device information"-->

In the Device Information section, look for the lines:

  • ๐Ÿ“‹ Model (e.g. Xiaomi Router 4Q).
  • ๐Ÿ”„ Firmware version โ€“ often contains an internal designation (e.g., RM2100 for AX6000).
  • ๐ŸŒ Region: CN (China), RU (Russia) or Global.

If the router is not displayed in the app:

  • ๐Ÿ”Œ Reconnect to its network (sometimes resetting the network settings on your phone helps).
  • ๐Ÿ”„ Update the Mi Home app to the latest version.
  • ๐Ÿ“ฑ Try another Xiaomi account (Chinese models may not show up in a global account).

๐Ÿ’ก

If you have a router that supports Mesh (such as the AX9000), only the main node can be displayed in the Mi Home app. To see the rest, go to Mesh Network.

4 Analysis of MAC- Addresses and Network Data

Each model of Xiaomi router corresponds to a unique range of MAC- addresses. From the first 6 characters (OUI) you can identify the manufacturer and sometimes the model.

  1. Connect to the router via Wi-Fi or cable.
  2. On Windows: Open Command Prompt (Win + R โ†’ enter cmd) and run: ipconfig /all Look for the Primary Gateway line is the IP router. Then run: arp -a [IP_ router] For example: arp -a 192.168.31.1.
  3. On Linux/macOS: arp -n | grep 192.168.31.1

As a result, you will see the MAC- address of the 7C:1E:52:XX:XX:XX species. The first 3 byte (7C:1E:52) is the OUI manufacturer. Compare them with the table:

OUI (first 6 characters of MAC)Possible modelNote
7C:1E:52Mi Router 3/3G/3 ProIt is also used in some versions of the Mi Router 4.
B4:FB:E4Mi Router 4A/4C/4QBudget models with MT7628.
D8:5D:4CAX3600/AX6000/AX9000Modern models with Wi-Fi 6.

For the precise definition of the MAC model:

  • ๐Ÿ” Use the MAC Vendors database โ€” enter the full MAC- address.
  • ๐Ÿ“Š Check lists of OUI in forums (e.g. 4PDA) where users share data on specific models.

โš ๏ธ Note: Some Xiaomi routers (especially) OEM-Operator versions may have MAC-In this case, the method will not work.

5. Checking through SSH and Command Prompt

If you're familiar with Linux or you're willing to experiment, you can connect to a router using SSH and execute commands to determine the model, and this method works even if the web interface is blocked.

Instructions:

  1. Activate SSH on the router: For OpenWRT-based firmware: go to Settings โ†’ Additional โ†’ Terminal. For standard firmware: use an exploit (requires technical skills).

SSH

PuTTY

ssh root@192.168.31.1

The default password is a password from the web interface or empty.

cat /proc/cpuinfo | grep "machine"

or

dmesg | grep "board_name"

The result could look like a Xiaomi Mi Router 4A or a miwifi-r4a.

Additional useful commands:

  • ๐Ÿ“‹ View firmware version: cat /etc/openwrt_release
  • ๐Ÿ”ง List of network interfaces (helps identify chipset): ifconfig

๐Ÿ’ก

If you see the name of the platform (e.g., mt7621 or ipq8074) as a result of the command, compare it with the table of Xiaomi chipsets โ€“ this will help narrow the range of possible models.

6. Definition by appearance and characteristics

If no technical methods are available, you can try identifying the router by design and specifications.

  • ๐Ÿ“ฆ Body: ๐ŸŸฅ Mi Router 4A/4C is a small white square with 2 antennas. โšช AX3600 is a black glossy body with 6 antennas. ๐ŸŸจ Mi Router 3G/Pro is a white perforated cylinder.
  • ๐Ÿ”Œ Ports: 1 port WAN + 2 ports LAN - most likely Mi Router 4 or 4A. 1 port 2.5G WAN - AX6000 or AX9000.
  • ๐Ÿ“ถ Antennas: 4 antennas - Mi Router 4 or AX1800. 6 antennas - AX3600 or AX5.

Check the light indicators:

  • ๐ŸŸก Orange indicator is characteristic of Mi Router 3 and 3G.
  • ๐Ÿ”ต Blue indicator is the AX- series or Mi Router 4 Pro.
How to distinguish Xiaomi Router 4 from 4A?
The Mi Router 4 has 4 antennas and a USB 2.0 port, whereas the 4A has only 2 antennas and no USB. 4A is 50 grams lighter and 5 mm thinner. If the sticker says R4A, that's exactly 4A.

7. Alternative methods (for experienced users)

If the standard methods did not help, try:

  • ๐Ÿ” Traffic analysis: Use Wireshark to capture packets from a router. DHCP Offer or HTTP- headers may contain a model (look for Xiaomi or miwifi strings).
  • ๐Ÿ”ง Disassembly of the case: The router board usually has a model marking (e.g., PCB: MiWiFi-R3D). Careful: this voids the warranty!
  • ๐Ÿ“ก Wi-Fi Scanner: Applications like WiFi Analyzer (Android) or NetSpot (macOS/Windows) can show the manufacturer and model in the network list (if the router is broadcasting SSID).

For advanced users:

  • ๐Ÿง Firmware analysis: Download the firmware dump via SSH (dd if=/dev/mtd0 of=/tmp/fullflash.bin) and scan it for lines with the model name (use Binwalk or HxD).
  • ๐Ÿ”— SNMP- Request: If the router supports SNMP, send the request: snmpwalk -v 2c -c public 192.168.31.1 1.3.6.1.2.1.1.1.0 The response may be a model.

โš ๏ธ Warning: Disassembling a router or operating a firmware through SSH may result in a loss of warranty or device failure. Use these methods only if other options are exhausted.

FAQ: Frequent questions

Can I identify the model of the Xiaomi router by serial number?
Yes, but only indirectly (S/N) It contains information about the lot and the date of production, but not about the model, but it can be used to specify the region (for example, the product is not the product, CN China's version of the code, and the approximate year of release, which will narrow the search. S/N Decoder.
What is the difference between the Chinese (CN) and global (Global) versions of Xiaomi routers?
Key differences: ๐Ÿ“ก Wi-Fi frequencies: CN- versions often do not support 12-14 channels in the 2.4GHz band (banned in Europe). ๐Ÿ”Œ Power: Chinese models can have a Type A plug (flat pins) and a voltage 220V without support 110V. ๐ŸŒ Firmwarewarewareware: CN- firmware has a Chinese interface and can block some services (e.g. Google DNS). ๐Ÿ“ฆ Compact: Global versions often have a power adapter for local outlets, and you can determine the version by labeling on a sticker (CN or Global) or through a web interface (Status section).
I've identified the model, but I can't find the firmware.
If the model is rare or outdated (e.g. Mi Router Mini or Mi WiFi Nano), try: ๐Ÿ” Search on 4PDA โ€“ there are firmware archives for most models. ๐Ÿ“ฅ Download firmware from Xiaomiโ€™s official website for a close model (e.g. for Mi Router 4 instead of 4A), but this is risky โ€“ can lead to inoperability. ๐Ÿ› ๏ธ Install alternative firmware (OpenWRT, Padavan) โ€“ many routers are supported, but require unlocking the Xiaomiโ€™s first-load firmware on the forum!
Buy a used router Xiaomi, how to reset it to factory settings?
Reset is done in two ways: Software Reset: Go to the web interface (192.168.31.1), go to Settings โ†’ Additional โ†’ Backup / Reset โ†’ Reset. Hardware Reset: Press and hold the Reset button (usually located on the back in the hole) for 10-15 seconds until the indicators start flashing orange. Once reset, the login/password becomes standard (admin/ password from the sticker). If the router is not reset, the firmware may be damaged, you will need to flash through TFTP or UART.
Can you tell by the router model if it supports Mesh networks?
Yes, here is a list of Xiaomi models with Mesh support (based on the 802.11k/v/r standard): ๐Ÿ”— AX9000 (three-band, up to 3 nodes). ๐Ÿ”— AX3600 (dual-band, up to 10 nodes in the network). ๐Ÿ”— AX6000 (supports a hybrid Mesh with wired backhot). ๐Ÿ”— Mi Router 4A (only in repeater mode, no full Mesh). To configure Mesh, all nodes must be the same model (except AX9000, which can work with AX3600 in mixed mode). Check support in the web interface: Settings โ†’ Mesh Mode.