Netcore N60 Pro
The Netcore N60 Pro (and its hardware-identical twins, netis MEX6000 in South Korea and netis NX62) is a high-performance Wi-Fi 6 router based on the MediaTek MT7986AV (Filogic 830) SoC. It features 2x 2.5GbE ports, 3x 1GbE ports, and 4×4 MU-MIMO on both 2.4GHz and 5GHz bands.
Any text with a light background (like this one) provides instructions for creating the Details Page. When you have filled in correct/useful information (instead of any template that's there) remove the instructions, as well as the
<WRAP> that encloses it.
Getting started with a new Device Page
- This is an empty template that suggests the information that should be present on a well-constructed Device Page. This means, that you have to fill it with life and information.
- There are several “fixme” tags with text on a light background (like this text) throughout this template. As you fill in the page, remove those tags so that people can judge its completeness.
- When there are no more “fixme” tags left, delete this one too, along with the
<WRAP>that encloses it.
Keep the articles modular
- Please include only model specific information, omit bla,bla and put everything generic into separate articles
- If you have no time to write certain stuff, link to docs
- base-system should lead the way, do not explain this again
- DO NOT provide a complete howto here! Instead groom the general documentation.
Supported Versions
- The tables below are automatically generated, once the correct filters for Brand and Model are set.
- If the tables below show information for
Netcore N60 Pro, everything is OK and you can delete this text and the<WRAP>that encloses it. - If the tables below contain “Nothing found”, it means that either
- the dataentry page for Netcore N60 Pro is missing. Please create a new dataentry page first, then reload this page. The tables should then contain $something. If they do, delete this text and the
<WRAP>that encloses it. - filters are not set correctly. Most common reason for “Nothing found”: The dataentry does not contain a Version, but we are filtering here for version → Please edit this section and adjust the filters with the proper Brand, Model and Version. In case the dataentry does not contain a version, delete the line
filter : Versions~. Just try, it's easy. The tables should then contain $something. If they do, delete this text and the<WRAP>that encloses it.
- If the tables still contain “Nothing found”: Don't panic, calm down, take a deep breath and contact a wiki admin (tmomas) for help.
Experimental Versions
None at this time.
Hardware Highlights
Installation
Backup
1. Connect your PC to a 1GbE LAN port on the router (e.g., LAN 4). Set a static IP on your PC: 192.168.1.254, Gateway 192.168.1.1.
2. Log in to the OEM web interface at ``http://192.168.1.1`` and complete the initial setup to set an administrator password.
3. Connect to the router using ssh (user: useradmin, pass: web interface password)
ssh useradmin@192.168.1.1
4. Make mtd backup:
dd if=/dev/mtd0 | gzip - | dd of=/tmp/mtd0_spi.bin.gz dd if=/dev/mtd1 | gzip - | dd of=/tmp/mtd1_bl2.bin.gz dd if=/dev/mtd2 | gzip - | dd of=/tmp/mtd2_uboot_env.bin.gz dd if=/dev/mtd3 | gzip - | dd of=/tmp/mtd3_factory.bin.gz dd if=/dev/mtd4 | gzip - | dd of=/tmp/mtd4_fip.bin.gz dd if=/dev/mtd5 | gzip - | dd of=/tmp/mtd5_ubi.bin.gz
5. Download mtd backup from the /tmp dir of the router to your PC using scp protocol (for example, you can use WinSCP for Windows)
OpenWrt installation
Warning!
This section describes actions that might damage your device or firmware. Proceed with care!
1. Download OpenWrt images for this device from https://downloads.openwrt.org/ (choose release you need). You will need: preloader.bin, bl31-uboot.fip, initramfs-recovery.itb, and squashfs-sysupgrade.itb.
2. Upload OpenWrt bl31-uboot.fip and preloader.bin images to the /tmp dir of the router using scp protocol.
3. Connect to the router using ssh and replace the bootloader:
cd /tmp mtd write preloader.bin spi0.1 mtd write bl31-uboot.fip FIP
4. Place OpenWrt initramfs-recovery.itb image on the tftp server (for example, you can use tftpd64 for Windows) and select interface with IP 192.168.1.254.
5. Erase ubi partition and reboot the router:
mtd erase ubi reboot
6. The router will automatically connect to your TFTP server and download the recovery image. Wait for the transfer to complete and the router to boot into OpenWrt.
7. Once the router boots, navigate to http://192.168.1.1 in your web browser (login is root). Go to System → Backup / Flash Firmware.
8. Click Flash image... and upload the squashfs-sysupgrade.itb file from your PC. Uncheck the “Keep settings” box and click Continue.
Note: If you have a netis MEX6000(a hardware twin of the Netcore N60 Pro with the stock firmware for South Korea market), please read the manufacturer's guide: How to install ImmortalWrt on the netis MEX6000 and revert to the stock firmware It explains how to install ImmortalWrt(a Chinese fork of OpenWrt), but you can simply install the OpenWrt firmware instead of ImmortalWrt.
Return to stock
Warning!
This section describes actions that might damage your device or firmware. Proceed with care!
1. Upload your previously saved original partition backups (*.bin.gz) to the /tmp dir of the router using scp protocol.
2. Connect to the router using ssh.
3. Restore the backup partitions by running:
dd if=/tmp/mtd0_spi.bin.gz | gunzip - | dd of=/dev/mtd0 dd if=/tmp/mtd1_bl2.bin.gz | gunzip - | dd of=/dev/mtd1 dd if=/tmp/mtd2_uboot_env.bin.gz | gunzip - | dd of=/dev/mtd2 dd if=/tmp/mtd3_factory.bin.gz | gunzip - | dd of=/dev/mtd3 dd if=/tmp/mtd4_fip.bin.gz | gunzip - | dd of=/dev/mtd4 dd if=/tmp/mtd5_ubi.bin.gz | gunzip - | dd of=/dev/mtd5
Flash Layout
Find out flash layout, then add the flash layout table here (copy, paste, modify the example).
Please check out the article Flash layout. It contains examples and explanations that describe how to document the flash layout.
OEM easy installation
None at this time.
OEM installation using the TFTP method
None at this time.
Upgrading OpenWrt
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/admin/system/flashLuCI Upgrade URL - Upload image file for sysupgrade to LuCI
- Wait for reboot
Terminal Upgrade Process
sysupgrade
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget https://downloads.openwrt.org/releases/25.12.5/targets/mediatek/filogic/openwrt-25.12.5-mediatek-filogic-netcore_n60-pro-squashfs-sysupgrade.itb sysupgrade -n /tmp/openwrt-25.12.5-mediatek-filogic-netcore_n60-pro-squashfs-sysupgrade.itb
Debricking
OpenWrt U-Boot
1. Place OpenWrt openwrt-mediatek-filogic-netcore_n60-pro-initramfs-recovery.itb image on the tftp server (for example, you can use tftpd64 for Windows) with IP 192.168.1.254
2. Press “Reset” button and power on the router. After ~10 sec release the button.
3. Use OpenWrt initramfs system for recovery.
mtkuartboot
Use mtk_uartboot and UART connection if BL2 and/or FIP is destroyed. https://github.com/981213/mtk_uartboot
Failsafe mode
Basic configuration
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
Specific Configuration
Please fill in real values for this device, then remove the EXAMPLEs
Network interfaces
The default network configuration is:
| Interface Name | Description | Default configuration |
|---|---|---|
| br-lan | EXAMPLE LAN & WiFi | EXAMPLE 192.168.1.1/24 |
| vlan0 (eth0.0) | EXAMPLE LAN ports (1 to 4) | EXAMPLE None |
| vlan1 (eth0.1) | EXAMPLE WAN port | EXAMPLE DHCP |
| wl0 | EXAMPLE WiFi | EXAMPLE Disabled |
Switch Ports (for VLANs)
Please fill in real values for this device, then remove the EXAMPLEs
Numbers 0-3 are Ports 1-4 as labeled on the unit, number 4 is the Internet (WAN) on the unit, 5 is the internal connection to the router itself. Don't be fooled: Port 1 on the unit is number 3 when configuring VLANs. vlan0 = eth0.0, vlan1 = eth0.1 and so on.
| Port | Switch port |
|---|---|
| Internet (WAN) | EXAMPLE 4 |
| LAN 1 | EXAMPLE 3 |
| LAN 2 | EXAMPLE 2 |
| LAN 3 | EXAMPLE 1 |
| LAN 4 | EXAMPLE 0 |
Buttons
→ hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.
Please fill in real values for this device, then remove the EXAMPLEs
The Netcore N60 Pro has the following buttons:
| BUTTON | Event |
|---|---|
| EXAMPLE Reset | reset |
| EXAMPLE Secure Easy Setup | ses |
| EXAMPLE No buttons at all. | - |
Hardware
Info
- This table is automatically generated, once the correct filters for Brand and Model are set.
- If you see “Nothing.” instead of a table, please edit this section and adjust the filters with the proper Brand and Model. Just try, it's easy.
- If you still don't see a table here, or a table filled with '¿': Is there already a Techdata page available for Netcore N60 Pro ? If not: Create one.
- If you see a table with the desired device data, everything is OK and you can delete this text and the
<WRAP>that encloses it. - If it still doesn't work: Don't panic, calm down, take a deep breath and contact a wiki admin (tmomas) for help.
---- datatemplatelist dttpllist ---- template: meta:template_datatemplatelist cols : Brand, Model, Versions, Device Type, Availability, Supported Since Commit_git, Supported since Rel, Supported current Rel, Unsupported, Bootloader, CPU, Target, CPU MHz, Flash MBs, RAM MB, Switch, Ethernet 100M ports_, Ethernet Gbit ports_, Comments network ports_, Modem, VLAN, WLAN 2.4GHz, WLAN 5.0GHz, WLAN Hardwares, WLAN Comments_, Detachable Antennas_, USB ports_, SATA ports_, Comments USB SATA ports_, Serial, JTAG, LED count, Button count, Power supply, Device Techdata_pageid, Forum topic URL_url, wikidevi URL_url, OEM Device Homepage URL_url, Firmware OEM Stock URL_url, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Comments_ filter : Model=^(N60 Pro|NX62)$
Photos
Front:
Insert photo of front of the casing
Back:
Insert photo of back of the casing
Backside label:
Insert photo of backside label
Opening the case
→ Warranty
Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...
- To remove the cover and open the device, do a/b/c
Main PCB:
Insert photo of PCB
Serial
→ port.serial general information about the serial port, serial port cable, etc.
Warning!
This section describes actions that might damage your device or firmware. Proceed with care!
How to connect to the Serial Port of this specific device:
Don't connect 3.3VD (+3.3 V) pin!
| Serial connection parameters for Netcore N60 Pro | 115200, 8N1, 3.3V |
|---|
JTAG
→ port.jtag general information about the JTAG port, JTAG cable, etc.
How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port
Bootloader mods
Hardware mods
None so far.
Bootlogs
OEM bootlog
COPY HERE THE BOOTLOG WITH THE ORIGINAL FIRMWARE
OpenWrt bootlog
COPY HERE THE BOOTLOG ONCE OPENWRT IS INSTALLED AND RUNNING
Notes
Space for additional notes, links to forum threads or other resources.
- ...
