Skip to content

Instantly share code, notes, and snippets.

@the-darkvoid
Created August 2, 2015 13:50
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save the-darkvoid/c6a1c112603cc33e68a7 to your computer and use it in GitHub Desktop.
Save the-darkvoid/c6a1c112603cc33e68a7 to your computer and use it in GitHub Desktop.
AsusWRT Merlin: Isolate Guest WiFi
#!/bin/sh
# get list of configured guest wireless networks
Guest24=`nvram get wl0_vifs`
Guest5=`nvram get wl1_vifs`
#
# Move all Guest wireless to br1
# attempt to move wireless guest fails (no security only works) until restart of eapd below
#
lan1names=""
# Drop any new connections from guest wifi to the router
iptables -I INPUT -i br1 -m state --state NEW -j DROP
# Allow guest wifi to access DHCP
iptables -I INPUT -i br1 -p udp --dport 67 -j ACCEPT
# Allow guest wifi to access DNS
iptables -I INPUT -i br1 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i br1 -p tcp --dport 53 -j ACCEPT
# Set appropriate firewall rules for new br1
iptables -I FORWARD -i br1 -m state --state NEW -j ACCEPT
iptables -I FORWARD -i br1 -o br0 -m state --state NEW -j DROP
iptables -I FORWARD -i br0 -o br1 -m state --state NEW -j DROP
for GuestWifiDevice in $Guest24 $Guest5
do
brctl delif br0 $GuestWifiDevice
brctl addif br1 $GuestWifiDevice
# add name to list with preceding blank
lan1names="$lan1names $GuestWifiDevice"
done
# if guest wifi moved, set some nvram variables and restart eapd to fix security
if [ "x$lan1names" != "x" ]
then
nvram set lan_ifnames="vlan1 eth1 wifi0"
nvram set lan_ifname="br0"
nvram set lan1_ifnames="`echo $lan1names | sed 's/^[ \t]*//;s/[ \t]*$//'`"
nvram set lan1_ifname="br1"
# restart eapd
killall eapd
eapd
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment