Skip to content

Instantly share code, notes, and snippets.

@zerobearing2
Forked from ovace/services-start.sh
Last active March 3, 2021 17:40
Show Gist options
  • Save zerobearing2/ccc048ac6f984b69721ee1a31b4a9ac5 to your computer and use it in GitHub Desktop.
Save zerobearing2/ccc048ac6f984b69721ee1a31b4a9ac5 to your computer and use it in GitHub Desktop.
multi SSID with VLAN script, for ASUS AC86U with merlin
#!/bin/sh
# multi SSID with VLAN script, for ASUS AC86U with merlin
#
# setup before hand:
# set "router" to "AP Mode"
# this will put all ports and wireless in br0
# create 3 guest network
# enable Administration => System => Enable JFFS custom scripts and configs
# put this script in /jffs/scripts/, name should be "services-start"
# remember `chmod a+x services-start`
# I strongly suggest you use static IP instead of DHCP
# In my test, the "router" will pickup DHCP lease from VLAN 1 instead of VLAN 227
# reboot
# some basic info of the original AP mode:
# eth0 => WAN port
# eth1~4 => LAN port 4~1, they're reversed
# eth5 => WiFi 2.4G
# eth6 => WiFi 5G
# wl0.1, wl0.2 => WiFi 2.4G guest networks
# wl1.1 => WiFi 5G guest networks
# this setup:
# WAN port (eth0) will be repurposed as a tagged port
# LAN ports (eth1~4) and primary WiFi (eth5,6) will be on VLAN 10
# guest network 1 will be on VLAN 20
# guest network 2 will be on VLAN 30
#echo "============== START 1 $(date) ==================" >> /jffs/scripts/log
#ip a >> /jffs/scripts/log
#ip r >> /jffs/scripts/log
#brctl show >> /jffs/scripts/log
#echo "============== END 1 $(date) ==================" >> /jffs/scripts/log
# echo $PATH > /tmp/script_debug
# remove eth0 which will be reconfigured as a tagged port
#brctl delif br0 eth0
# remove interfaces we're gonna move to other bridges
brctl delif br0 wl0.1
brctl delif br0 wl0.2
brctl delif br0 wl1.1
# add vlans
# interestingly, depending on the time passed since system boot,
# vlan interfaces will be named eth0.1 or vlan1, I guess some udev rules got loaded.
# so we use ip link instead of vconfig to specify a name explicitly.
#ip link add link eth0 name eth0.10 type vlan id 10
ip link add link eth0 name eth0.20 type vlan id 20
ip link add link eth0 name eth0.30 type vlan id 30
#ip link set eth0.10 up
ip link set eth0.20 up
ip link set eth0.30 up
# reconfigure br0, private LAN
#brctl addif br0 eth0.10
# set up br1, guest LAN
brctl addbr br1
brctl addif br1 eth0.20
brctl addif br1 wl0.1
brctl addif br1 wl1.1
ip link set br1 up
# set up br2, another guest LAN for IoT devices
brctl addbr br2
brctl addif br2 eth0.30
brctl addif br2 wl0.2
ip link set br2 up
# seems like eapd reads config from these
# no need to set lan_ifname since it's already there
nvram set lan_ifnames="eth0 eth1 eth2 eth3 eth4 eth5 eth6"
nvram set lan1_ifnames="wl0.1 wl1.1 eth0.20"
nvram set lan1_ifname="br1"
nvram set lan2_ifnames="wl0.2 eth0.30"
nvram set lan2_ifname="br2"
# doesn't seem to affect anything, just make it align
nvram set br0_ifnames="eth0 eth1 eth2 eth3 eth4 eth5 eth6"
nvram set br1_ifnames="wl0.1 wl1.1 eth0.20"
nvram set br1_ifname="br1"
nvram set br2_ifnames="wl0.2 eth0.30"
nvram set br2_ifname="br2"
# we do NOT issue `nvram commit` here since it won't survive reboot anyway
# is there a better way to do this like `service restart eapd` ?
killall eapd
eapd
#echo "============== START 2 $(date) ==================" >> /jffs/scripts/log
#ip a >> /jffs/scripts/log
#ip r >> /jffs/scripts/log
#brctl show >> /jffs/scripts/log
#echo "============== END 2 $(date) ==================" >> /jffs/scripts/log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment