1. Connect antennas 2. Connect ethernet cable from LAN port on TPE-R1300 to a computer's ethernet port 3. Connect the power MicroUSB power cable 4. Wait for router to come up and then disconnect from all network connections other than the ethernet connected to your TPE-R1300 router 5. Open a terminal and run the following command and hit enter: ssh root@192.168.10.1 6. Type in yes and hit enter when prompted about the key not being known 7. In the terminal type the following command and hit enter: vi /sbin/woggle 8. Copy the below script: #!/bin/sh radio="radio0" # Check with `uci show wireless | grep radio` case "$(uci get wireless.$radio.disabled 2>/dev/null)" in "0"|"off") uci set wireless.$radio.disabled=1 wifi down echo "Wi-Fi disabled" ;; "1"|"on"|*) uci set wireless.$radio.disabled=0 wifi up echo "Wi-Fi enabled" ;; esac uci commit wireless 9. In the terminal tap the a key 10. Right click on the terminal and select paste 11. Hit the escape key and then type :wq! followed by tapping the enter key 12. Type the following below into the terminal and then hit the enter key: chmod +x /sbin/woggle 13. Enter the following into the terminal and hit the enter key: mkdir -p /etc/hotplug.d/button/ 14. Type the following command into the terminal and then hit the enter key: vi /etc/hotplug.d/button/01-wifi-toggle 15. Tap the a key 16. Copy the below script #!/bin/sh [ "$BUTTON" = "BTN_1" ] && { sleep 1 /sbin/woggle } 17. Back in the terminal right click and select paste 18. Hit the escape key and then type :wq! followed by the enter key