Category Archives: OpenWRT

Optimising LEDE (OpenWrt) for the PC Engines APU2

I’m planning to get APU2 in near future, I found this article is useful for my future project and created a mirror here. Credit to original post. The PC Engines APU2 is an embedded system based on AMD’s Jaguar family of processors. Many people prefer to run pfSenseon it, but since the rest of my hardware is alread on LEDE, it’s… Read More »

Loading

OpenWRT Adblock with Pixelserv

There’re many ways of doing this. The scenario and configuration is flexible enough, depending on what you want to achieve. The easy way Others have recently developed packages for this same functionality, and done it better than anything I could do. Use the packages instead of this script: Gargoyle package by @lantis1008 OpenWRT package by… Read More »

Loading

OpenDNS update script on OpenWRT Backfire 10.03.

AUTHOR: [email protected] Install ‘curl’ package: # opkg update # opkg install curl Next create a script and call it /root/rc.ddns_opendns.sh : #/bin/sh /usr/bin/curl -4 -k -u username:password “https://updates.opendns.com/account/ddns.php?” Make the script executable: # chmod +x /root/rc.ddns_opendns.sh Next create another script and call it /etc/hotplug.d/iface/100-opendns : #!/bin/sh if [ “$ACTION” = ifup ]; then /root/rc.ddns_opendns.sh >… Read More »

Loading

OpenWRT Backfire + HE.net IPv6 Tunnelling with dynamic WAN address

Mission: The example below illustrates a dynamic tunnel configuration for the Hurricane Electric broker with dynamic IP update enabled. The local IPv4 address is automatically determined and tunnelid, username and password are provided for IP update. Requirements: HE.net ipv6 tunnel, OpenWRT Backfire Get your v6 tunnel Go to http://www.tunnelbroker.net and register. Once registered, click on “Create Regular… Read More »

Loading