The ultimate purpose is to reduce bandwith to the guest network through quotas, which I think I know how to do in the GUI.
The intented code to write:
Code: Select all
#/etc/config/wireless add a new access point
config wifi-iface
option device 'radio0'
option mode 'ap'
option encryption 'psk2'
option key '12345678'
option ssid 'Guest'
option network 'Guest'
#/etc/config/network add a corresponding entry depending on the max guests allowed
config interface 'Guest'
option _orig_ifname 'wlan0-1'
option _orig_bridge 'false'
option proto 'static'
option ipaddr '192.168.1.249'
option netmask '255.255.255.248
#/etc/config/dhcp match the IP address ranges of each AP
config dhcp 'lan'
option interface 'lan'
option leasetime '12h'
option start '2'
option limit '125'
config dhcp 'guest'
option leasetime '12h'
option interface 'Guest'
option start '130'
option limit '125'
- If I change
Code: Select all
option ssid 'Guest'
Code: Select all
config dhcp 'guest'
- The 'regular network' ssid name is not being being touched at all here right?
- According to
Code: Select all
option start '2'
-I currently have configured my PC as static 192.168.1.100 through gargoyle GUI, no further issues here right?
Waiting for further instructions, ready to go.