I'd like to isolate my guest SSID. I'm using AP mode in front of an Edgerouter. Will this work or do I need more in terms of brouting? I'm new to this scripting process.
Do I need to do anything on the Edgerouter?
/jffs/scripts/firewall-start
With those rules, from the main network, I can't ping the guestSSID#1, but it seems that devices on guestSSID#1 can ping devices on the main network. What do I need to change?
I have br0 across vlan1, eth1, eth2, and some regular WiFi if I'm understanding the brctl show output.
How many times can one format the jffs partition? Or is that use ok versus log files and such?
Do I need to do anything on the Edgerouter?
/jffs/scripts/firewall-start
Code:
#!/bin/sh
#vlan1 is LAN
#wl0.1 is guestSSID#1
#Isolate guestSSID#1
wl -i wl0.1 ap_isolate 1
#Flush ebtables
ebtables -F
#Drop connections for guestSSID#1
ebtables -I FORWARD -i wl0.1 -o vlan1 -j DROP
ebtables -I FORWARD -i vlan1 -o wl0.1 -j DROP
I have br0 across vlan1, eth1, eth2, and some regular WiFi if I'm understanding the brctl show output.
How many times can one format the jffs partition? Or is that use ok versus log files and such?
Last edited: