---
title: "How to disable LED’s in Asus AC3200 on Tomato"
date: "2017-05-03T09:13:01Z"
tags: ["Asus", "Router", "Tomato"]
categories: ["Hardware & HomeLab", "Networking & Security"]
---

![Asus AC3200 Logo][1]

This is post is quite different than you usually find on my blog. It is going to be about How to disable LED's in Asus AC3200 on Tomato.
<!--more-->
<!--adsense-->
Asus AC3200 is a very powerful router. I bought it because I wanted to have better bandwidth control (QoS). I chose AC3200 due to the fact that it has three separate wireless interfaces. Last selection factor is that it supports alternative firmware called <a href="http://tomato.groov.pl/?page_id=81" target="_blank" rel="noopener noreferrer">Tomato</a>. I used tomato on my very old and still working Linksys WRT54G.

# How to install Tomato on Asus AC3200 router?

A procedure is very easy. My router originally came with following firmware **FW 3.0.0.4.380_3479-g683f27**. When I tried to upload Tomato firmware I received immediately this warning: **Firmware upgrade unsuccessful. This may result from incorrect image or error transmission. Please check the version of firmware and try again.** This is because Asus blocked firmware upgrade.

To skip this I downgraded Asus firmware to **WRT-AC3200_30043789529** using **ASUS Firmware Restoration** utility. Once downgraded flashing Tomato firmware was possible.

# How to disable LEDs on Asus AC3200 router?

To disable the LEDs (both wireless interfaces plus all LAN) simply enter following commands via SSH.

```bash
et robowr 0x00 0x18 0x1e0
et robowr 0x00 0x1a 0x1e0
wl -i eth1 leddc 1
wl -i eth2 leddc 1
gpio enable 12
gpio enable 15
```

To enable LEDs enter following commands via SSH.

```bash
et robowr 0x00 0x18 0x1ff
et robowr 0x00 0x1a 0x1ff
wl -i eth1 leddc 0
wl -i eth2 leddc 0
gpio disable 12
gpio disable 15
```
Once enabled they will stay in defined state.

# How to schedule LEDs change on Asus AC3200 router?

In Tomato go to **Administration / Scheduler** and configure scheduler according to your needs. I disable all LEDs at 10PM and enable them at 8 AM.

![Asus Scheduler][2]

## Summary

I hope this post will be informative for you. If you wish to learn about Asus AC3200 router specification visit this page <a href="https://www.asus.com/Networking/RTAC3200/specifications/" target="_blank" rel="noopener noreferrer">https://www.asus.com/Networking/RTAC3200/specifications/</a>.

 [1]: /images/uploads/2017/05/asus-ac3200-logo.webp
 [2]: /images/uploads/2017/05/asus-ac-3200-tomato-scheduler.webp
