Tested with trunk r32682 openwrt firmware image.
Usb, wifi, lan, all seem to work.
This device is very similar to Dovado 3GN, Same board, cpu.
!! WARNING !! Since trunk rev 33300, all lan ports including wan port acts as a dumb switch. There is no NAT. This is not yet fixed and it is related to swich functionality which was added from rev 33300. Everything is working good up to rev. 33298. So remember to compile your own working image.
The bug might be fixed in r34379 as claimed in 12125.
A working (but maybe older) firmware from this thread. This is an outdated howto.
→ Install OpenWrt (generic explanation)
NOTE: This method was tested on firmware 2.21b available at Edimax Poland:
http://routerhttp://router/syscmd.asp/usr/sbin/telnetd -l /bin/ash
cd /tmp wget .../openwrt-ramips-rt305x-3g-6200n-squashfs-sysupgrade.bin wget .../mtd chmod a+x mtd ./mtd -r write openwrt-ramips-rt305x-3g-6200n-squashfs-sysupgrade.bin Kernel:RootFS
In case of problems it should be possible to flash back to original firmware via tftp firmware restore method.
IP Address: 192.168.1.2 Netmask: 255.255.255.0 Gateway: 192.168.1.1
| Architecture | RAMIPS |
|---|---|
| Vendor | RALINK |
| Bootloader | U-Boot |
| System-On-Chip | RT3050F |
| CPU Speed | 320MHz |
| Flash-Chip | MX29LV320T |
| Flash size | 4MiB |
| RAM | 32MiB |
| Wireless | 802.11n (B/G/N) |
| Ethernet | 10/100 |
| USB | Yes |
| Serial | Yes |
| JTAG | No |
To be able to control Wi-Fi with wlan on/off switch which is located next to antenna port, you have to make two scripts and put them into /etc/hotplug.d/button folder.
mkdir /etc/hotplug.d/button cd /etc/hotplug.d/button touch 00-wlan
Put this script into 00-wlan (this script switches WIFI ON):
if [ "$ACTION" = "pressed" ]; then if [ "$BUTTON" = "BTN_0" ]; then uci set wireless.@wifi-device[0].disabled=0 && uci commit && wifi up fi fi
Now make the second script:
touch 01-wlan
Put this script into 01-wlan (this script switches WIFI OFF):
if [ "$ACTION" = "released" ]; then if [ "$BUTTON" = "BTN_0" ]; then uci set wireless.@wifi-device[0].disabled=1 && uci commit && wifi down fi fi
Now you can switch wifi on/off with the wlan switch :)
Device is suported in Trunk since 32682
svn co svn://svn.openwrt.org/openwrt/trunk/ cd trunk make menuconfig
make
Polish forum openrouter.info from which this device was hacked by Ahajda and Lgolebio users.