DHCP settings 66 and 67 available on ASUS router.
DHCP settings 66 and 67 available on ASUS router.
DHCP capabilities on consumer routers are generally restricted. When the manual doesn't address a solution, it's likely unsupported unless custom firmware is used.
Thanks for your response. You've got the general idea right. I'm curious about the level of openness in the firmware for the GT-AC5300. I've worked with PuTTY for USB permissions, but that's the extent of my experience. Hopefully, someone with CLI expertise can help with firmware adjustments. Appreciate the support!
SSH connections from Asus routers are limited. I managed this with pihole. Below is my configuration layout. For arch9 and arch7, optional; if the booted server needs it, see the example. After saving, reload the service. If anyone finds a method to transfer these settings to dnsmasq on an Asus device, I’d value their input. (The server being booted is 192.168.1.6) pi@raspberrypi : /etc/dnsmasq.d $ cat 02-pihole-dhcp.conf ############################################################################### DHCP SERVER CONFIG FILE AUTOMATICALLY POPULATED BY PI-HOLE WEB INTERFACE. # Any modifications here will be lost upon change ############################################################################### dhcp-authoritative dhcp-range=192.168.1.15,192.168.1.253,24h dhcp-option=option:router,192.168.1.1 dhcp-leasefile=/etc/pihole/dhcp.leases #PXE dhcp-option=66,"192.168.1.6" dhcp-boot=ipxe.efi,,192.168.1.6 dhcp-match=set:efi-x86_64,option:client-arch,7 dhcp-match=set:efi-x86_64,option:client-arch,9 #quiet-dhcp domain=scuarmander.com local=/scuarmander.local/ pi@raspberrypi : /etc/dnsmasq.d $ sudo service pihole-FTL reload
It varies based on your PXE setup. Some systems manage it locally, while others use TFTP and broadcast domains. Since you have a PXE server with DHCP capabilities, it makes sense to consider using DHCP directly there instead.