The DHCP configuration area is delivered as server-rendered Blade views rather than a JSON API. Each route below returns an HTML page that lets you interact with the router’s DHCP settings through embedded forms. All routes require an active session — unauthenticated requests are redirected toDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/KevinCruz-cell/Redes-de-comunicaciones-/llms.txt
Use this file to discover all available pages before exploring further.
/login (see Authentication).
Routes overview
| Method | Path | View | Description |
|---|---|---|---|
GET | /dhcp | dhcp.dhcp | General DHCP server settings |
GET | /dhcp/resolv | dhcp.dhcp-resolv | Resolv.conf and /etc/hosts file configuration |
GET | /dhcp/tftp | dhcp.dhcp-tftp | TFTP server configuration |
GET | /dhcp/avanzada | dhcp.dhcp-avanzada | Advanced DHCP options |
GET | /dhcp/estaticas | dhcp.dhcp-estaticas | Static DHCP lease assignments |
GET | /nombres-host | hosts.hosts | Host name management |
GET /dhcp
Renders the general DHCP server configuration page. This is also the default landing page after a successful login. Covers settings such as the DHCP server enable/disable toggle, lease time, and DHCP range. All changes are submitted directly to the OpenWrt router’s LuCI interface or applied via UCI commands triggered by the page’s JavaScript.GET /dhcp/resolv
Renders the resolv.conf and hosts file configuration view. Use this page to set custom DNS servers, manage the local domain, and edit the router’s/etc/hosts entries.
GET /dhcp/tftp
Renders the TFTP server configuration view. Use this page to enable the built-in TFTP server (provided bydnsmasq), set the TFTP root directory, and configure boot file options for network booting.
GET /dhcp/avanzada
Renders the advanced DHCP configuration view. Covers options such as customdnsmasq flags, DHCP option sets, DNS forwarders, and other advanced settings not exposed on the main DHCP page.
GET /dhcp/estaticas
Renders the static DHCP lease assignment view. Use this page to bind specific MAC addresses to fixed IP addresses, ensuring the same device always receives the same IP from the DHCP server.GET /nombres-host
Renders the host name management view. Use this page to add or edit custom host name entries that the router’s DNS resolver will serve to LAN clients.Session guard
All six routes use an inline session check:/login on your next page load.
Interactions within these pages (form submissions, AJAX calls) may communicate directly with the OpenWrt LuCI interface or send UCI commands through the application’s API endpoints. Refer to the page source for details on specific form targets.