GCLog on TL-WR703N

Install OpenWrt

  • Install or upgrade OpenWrt firmware (without LuCI)
    cd /tmp
    wget http://files.dateihal.de/openwrt/openwrt-18.06.1-ar71xx-tiny-tl-wr703n-v1-squashfs-sysupgrade.bin
    sysupgrade openwrt-18.06.1-ar71xx-tiny-tl-wr703n-v1-squashfs-sysupgrade.bin

Configure system

  • Set hostname and timezone
    uci set system.@system[0].hostname='gclog'
    uci set system.@system[0].timezone='CET-1CEST,M3.5.0,M10.5.0/3'
    uci set system.@system[0].zonename='Europe/Berlin'
  • Configure LAN and WLAN via DHCP
    uci set network.lan.proto=dhcp
    uci set network.wlan=interface
    uci set network.wlan.proto=dhcp
    uci delete wireless.radio0.disabled
    uci set wireless.radio0.country='DE'
    uci set wireless.radio0.txpower=20
    uci set wireless.radio0.channel='auto'
    uci set wireless.@wifi-iface[0].network='wlan'
    uci set wireless.@wifi-iface[0].mode='sta'
    uci set wireless.@wifi-iface[0].encryption='psk-mixed'
    uci set wireless.@wifi-iface[0].ssid='YOUR_SSID'
    uci set wireless.@wifi-iface[0].key='YOUR_PASSWORD'
    uci add_list firewall.@zone[0].network='wlan'
  • Save all settings
    uci commit

GCLOG

  • Install USB-serial driver
    opkg update
    opkg install kmod-usb-serial-pl2303
  • Download and install GCLOG
    cd /tmp
    wget http://www.dateihal.de/gclog/openwrt/18.06.1/gclog_0.2.4-1_mips_24kc.ipk
    opkg install gclog_0.2.4-1_mips_24kc.ipk
  • Modify configuration file
    vi /etc/gclog.conf
  • Reboot your device
    reboot