The YazFi script will create separate IP address ranges for guest WiFi on the main router (not sure about node guests though). From there one can push, via scripting, static IP addresses for those guest WiFi devices.
See the main YazFi thread: for more including how to set static guest IP's:
https://www.snbforums.com/threads/y...-merlin-guest-wifi-inc-ssid-vpn-client.45924/
In particular my write up in that thread about assigning static IP's for guest WiFi clients:
https://www.snbforums.com/threads/y...inc-ssid-vpn-client.45924/page-32#post-473403
YazFi Github page:
https://github.com/jackyaz/YazFi
And some info on setting static IP's for guests:
https://github.com/jackyaz/YazFi/wiki/Setting-up-YazFi-with-Pi-hole-and-ARP-records
Hi,
All that talk about Pi-Hole, DNS, ARP records, DHCP reservations, dnsmasq, subnets,etc is all very confusing and over my head (I'm not even sure what a Pi-Hole is). I just want to set 2 devices to use the Guest network (so they can not access my intranet) and always use the same IP address. Currently, I can easily use LAN/DHCP server page in the GUI and enter the mac address and IP address and select Apply. This works fine for non-guest network. With guest network 1, the IPs are not fixed but the AiMesh nodes work. With guest network 2, the IPs are fixed but it doesn't work with the AiMesh nodes.
I'm assuming I need to do the following. Please let me know if it looks OK
1) Setup Guest Network on G1 in Merlin
2) Install YazFi (there is a YazFi on amtm but is this different than YazFi develop mode script mentioned above?)
3) Keep defaults on YazFi (Is this correct or do I need to change anything here?)
4) Create a dnsmasq.postconf file in /jffs/scripts/ and change it's permission (using Xshell and WinSCP I should be OK doing this)
5) reboot router
my standard network is 192.168.1.xxx
I want something like this (note the IP could be different but needs to be Fixed)
If my mac addresses and Static IP address are as follows:
1A:2B:3C:4D:5E:6F 192.168.1.200 Camera1
1G:2H:3I:4J:5K:6L 192.168.1.201 Camera2
would dnsmasq.postconf look like:
#!/bin/sh
CONFIG=$1
source /usr/sbin/helper.sh
pc_append "dhcp-host=1A:2B:3C:4D:5E:6F,192.168.1.200,Camera1" $CONFIG
pc_append "dhcp-host=1G:2H:3I:4J:5K:6L,192.168.1.201,Camera2" $CONFIG
Do I need to change the static IP to something like 192.168.100.200, 192.168.100.201?
Thanks