Updated a RT-AX86U Pro to the beta. In general, so far everything seems to be working as expected on the router in a basic setup with two Guest Network Pro Customized Networks, each on their own WiFi band. Not using Smart Connect. No AiMesh. Installed YazDHCP develop version (1.0.7) and was able to import the manual DHCP reservations that were used in the prior 3004.x Asus-Merlin firmware.
Have successfully created manual IP reservations for the two Guest Network Pro client networks using
/jffs/configs/dnsmasq-1.conf.add (permissions 0644) and
/jffs/configs/dnsmasq-2.conf.add (permissions 0644) files. Correct names (from those dnsmasq-x.conf.add files) are correctly populated on the; Network Map, Client Status, Client List, Guest Network Pro client lists, and Wireless log sections. Examples for others (MAC address,IPAddress,ClientName):
/jffs/configs/dnsmasq-1.conf.add
Code:
dhcp-host=AA:BB:CC:DD:EE:FF,192.168.52.21,MiniSmartPlug1
dhcp-host=GG:HH:II:JJ:KK:LL,192.168.52.22,MiniSmartPlug2
/jffs/configs/dnsmasq-2.conf.add
Code:
dhcp-host=AA:BB:CC:DD:EE:FF,192.168.53.21,WiFiCamera1
dhcp-host=GG:HH:II:JJ:KK:LL,192.168.53.22,WiFiCamera2
I assume one could probably add individual lease time if needed. I didn't try it for my setup.
The DNS Director for Guest Network Pro networks is a nice touch. Can now have Guest Network Pro clients use a local network Pi-Hole IP address for DNS resolving when the Guest Network Pro "
Use same subnet as main network" setting is
disabled. This was something I couldn't seem to find a way use the local network Pi-Hole under the stock Asus 3006 firmware for the Guest Network Pro clients when having
Use same subnet as main network was set to disabled.
To that end however, the local main LAN network Pi-Hole is not correctly resolving the Guest Network Pro client names from the router. Instead I have to use a Host file on the Pi-Hole device (a Raspberry Pi 3B+) to list there manual Guest Network Pro IP reservations along with their name. In the past when using YazFi one could create the /etc/dnsmasq.d/10-subnet-dns.conf file on the Pi-Hole device and use something like the following code (for each YazFi guest network) in that file to have the Pi-Hole resolve the client names when queries were made to the Asus router.
Code:
server=/3.168.192.in-addr.arpa/192.168.2.1
server=/4.168.192.in-addr.arpa/192.168.2.1
Tried substituting in the Guest Network Pro IP subnet's (52 and 53 for 3 and 4 respectively) in the code example (rebooted router) but that didn't work.
Any suggestions on getting Pi-Hole to properly query the Asus router for the Guest Network Client names without resorting to using a Hosts file on the Pi-Hole device?
Other then that, no other major issues have been experienced (so far

).
Post updated to fix incorrect file name.