angela c7e3aafac7 Add PopOS fixes for initramfs and iconv issues 1 year ago
..
ddwrt f260dce560 Move DDWRT notes to DDWRT section 4 years ago
fortigate 3d77e3c5bb Link MDM notes 1 year ago
img 95f1612f9a 802.11w notes added 3 years ago
nomad 382ef11754 Customize Nomad welcome screen 2 years ago
openwrt a6abb0cd3f Expand on Updating OpenWrt notes 3 years ago
prtg facce9703e Add PRTG notes 3 years ago
unifi dda8720ec3 Fix verbal redundancy 3 years ago
README.md cde75ebc8d Add Custom DNS notes for OpenWRT 4 years ago
active-directory-dhcp-unifi-equipment.md 7e9419adb8 Add AD DHCP w/ Unifi notes 2 years ago
datto-firewall-rules.md aa23db3bf1 Datto firewall rules for appliance backups 2 years ago
datto-troubleshooting.md bcedffa2eb Add Datto notes 1 year ago
installing-wireshark-debian.md 05d4347fc8 Move directories 3 years ago
linux-recovery-no-networking.md c7e3aafac7 Add PopOS fixes for initramfs and iconv issues 1 year ago
wpa2-eap-raspberry-pi.md c3d244427d EAP Wifi on Raspberry Pi notes added 4 years ago

README.md

Linux-based Router Firmware

Notes for DD-WRT and OpenWRT router firmware.

DD-WRT

OpenWRT

Post Installation


Most of these instructions were written for OpenWRT 17.01.6; for 18.06+, they are largely still valid - with the exception of iptables -state (which is deprecated in later versions.)

OpenWRT Fix

If you try to use the obsolete shared library, you'll see:

iptables v1.6.1: Couldn’t load match `state’:No such file or directory

Instead of (works in 17.01.6 - breaks in 18.06):

iptables -I FORWARD 1 -m state --state RELATED,ESTABLISHED -j ACCEPT

Use this, instead:

iptables -I FORWARD 1 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT

conntrack has superseded state


DD-WRT latest utilized Oct 19, 2018 beta; r37442 (never had a single issue with DD-WRT throughout all of my upgrades, always stable and awesome despite being labled a beta release) -- the primary issue I take with DD-WRT is limited support for VLAN switchports.

Only Broadcom based devices support port-based VLAN's, no Atheros or Ralink devices.

While DD-WRT limits VLAN port capability, OpenWRT fully supports Atheros; based on the routers I've configured.