ASUS RT-AC1200HP
ASUS RT-AC1200 HP
Availability: now
FCC approval date: 29 May 2015
Country of manuf.: China
Series: AC1200
Type: wireless router
FCC ID: MSQ-RTN54U
Power: 12 VDC, 1 A
Connector type: barrel
CPU1: MediaTek MT7620A (580 MHz)
FLA1: 16 MiB16,777,216 B <br />131,072 Kib <br />16,384 KiB <br />128 Mib <br />0.0156 GiB <br /> (Brand? SPI)
RAM1: 128 MiB134,217,728 B <br />1,048,576 Kib <br />131,072 KiB <br />1,024 Mib <br />0.125 GiB <br /> (Brand? DDR2)
Expansion IFs: USB 2.0
USB ports: 1
WI1 chip1: MediaTek MT7620A
WI1 802dot11 protocols: bgn
WI1 MIMO config: 2x2:2
WI1 antenna connector: none
WI2 chip1: MediaTek MT7612E
WI2 802dot11 protocols: an+ac
WI2 MIMO config: 2x2:2
WI2 antenna connector: none
ETH chip1: MediaTek MT7620A
Switch: MediaTek MT7620A
LAN speed: 100M
LAN ports: 4
WAN speed: 1G
WAN ports: 1
abgn+ac
Flags: AiCloud
Default SSID: ASUS (97 addl. devices)
, ASUS_5G (44 addl. devices)
Default IP address: 192.168.1.1
the IP 192.168.1.1 is used by 1317 additional devices
of which 168 are ASUS devices
Default login user: admin
Default login password: admin
admin:admin credentials used by 1332 additional devices
of which 200 are ASUS devices
802dot11 OUI: none specified
| FCC ID | |
|---|---|
| ASUS RT-AC54U | MSQ-RTN54U | 
| ASUS RT-N54U | MSQ-RTN54U | 
| CPU1 brand | WI1 chip1 brand | WI2 chip1 brand | |
|---|---|---|---|
| ASUS RT-AC1200 | MediaTek | MediaTek | MediaTek | 
| ASUS RT-AC1200 v2 | MediaTek | MediaTek | MediaTek | 
| ASUS RT-AC1200G | Broadcom | Broadcom | Broadcom | 
| ASUS RT-AC1200GP | Broadcom | Broadcom | Broadcom | 
| ASUS RT-AC1200GU | MediaTek | MediaTek | MediaTek | 
| ASUS RT-AC1200HP | MediaTek | MediaTek | MediaTek | 
For a list of all currently documented MediaTek chipsets with specifications, see MediaTek.
Dual-Band Wireless-AC1200 Router
- Product page (HP = High Power)
 
Features
- Gigabit WAN port for high-speed Internet service and connect at speeds 1Gbps
 - USB port for printer networking, storage sharing, and 3G/4G connections
 - ASUS AiCloud app to access, sync, share and stream files on the go-quickly
 - Easy 30 second setup and controls like network monitoring through ASUSWRT
 - Expanded wireless coverage with high power design
 
Specifications
- Product Segment: AC1200 (300+867 Mbps)
 - Ports: USB: 1x USB 2.0
 
- WAN: 1x GbE (RJ45) for 10/100/1000 BaseT
 - LAN: 4x FE (RJ45) for 10/100 BaseT
 
- Antenna: 4x internal antenna
 - Operating Frequency: 2.4/5GHz
 - Button: WPS, Reset, Power switch, Wireless (On/Off)
 - Power Supply:
 
- AC Input: 110~240V (50~60Hz)
 - DC Output: 12V with max. 1A current
 
- Dimensions 187 x 145 x 25 mm (WxDxH)
 - Weight: 270g
 
Forum threads
- On SNB forums (RTN)
 - On iXBT forums (Padavan & RTN)
 
- Asus RT-AC1200HP AC1200 2T2R 2.4/5GHz
- 802.11n (300Mbps) + 802.11ac (867Mbps)
 - MT7620A (802.11n) + MT7612E (802.11ac)
 + MT7530B (1GbE switch)+ P5 > ext. PHY (GbE)
- ASUS RT-AC1200HP: (ASUS RT-N54U + AC + ext. PA/LNA ??)
 
- CPU: MediaTek MT7620A @580MHz WiSoC
 - WLAN: MediaTek MT7612E 2T2R 802.11ac
 - RAM: 128MB; Flash: SPI; USB: 1x USB 2.0
 
- ASUS RT-N56U B1 (V2): (
ASUS RT-AC56S - AC) 
- CPU: MediaTek MT7621S @880MHz SoC
 - WLAN: MediaTek MT7603E + MT7612E (AC) !!
 - RAM: 128MB; Flash: SPI; USB: 2x USB 2.0
 
- ASUS RT-AC54U (ASUS RT-N54U + AC ??)
 
 
RMerlin's GitHub
| • config | 
|---|
	#ifdef RTCONFIG_RALINK
	#include <ralink.h>
	#include <flash_mtd.h>
	#endif
 
#if defined(LINUX30) && !defined(RTN14U) && !defined(RTAC52U) 
&& !defined(RTAC51U) && !defined(RTN11P) && !defined(RTN54U) 
&& !defined(RTAC1200HP) && !defined(RTN56UV2)
 
		case MODEL_RTN11P:	/* fall through */
		case MODEL_RTN14U:	/* fall through */
		case MODEL_RTN54U:      /* fall through */
		case MODEL_RTN56UV2:      /* fall through */
		case MODEL_RTAC1200HP:  /* fall through */
		case MODEL_RTAC51U:	/* fall through */
		case MODEL_RTAC52U:
============================
#elif defined(RTAC1200HP)
enum {
	WAN_PORT=5,
	LAN1_PORT=0,
	LAN2_PORT=1,
	LAN3_PORT=2,
	LAN4_PORT=3,
	P5_PORT=4,
	CPU_PORT=6,
	P7_PORT=7,
};
#elif defined(RTN56UV2)
enum {
	WAN_PORT=4,
	LAN1_PORT=3,
	LAN2_PORT=2,
	LAN3_PORT=1,
	LAN4_PORT=0,
	P5_PORT=5,
	CPU_PORT=6,
	P7_PORT=7,
};
#define MT7621_GSW
#endif
 |