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

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.