The interfaces panel gives you full lifecycle control over the network interfaces configured on your OpenWrt router. Every action — creating, editing, restarting, stopping, or deleting an interface — is executed by connecting to the router over SSH and running UCI commands, followed by a network reload. Navigate 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.
/router2/interfaces to open the panel.
Interface list
The panel displays all currently configured interfaces with the following information:| Column | Example | Description |
|---|---|---|
| Name | LAN, WAN | UCI interface name (uppercase for display) |
| Device | br-lan, eth0.2 | Underlying network device |
| Protocol | Static address, DHCP client | IP assignment method |
| MAC address | EC:75:0C:48:B9:01 | Hardware address of the device |
| IPv4 address | 192.168.10.1/24 | Current IPv4 address or 0.0.0.0 if not assigned |
Creating a new interface
Enter a name
Provide a lowercase interface name (e.g.
vpn, guest). The name is used as the UCI section identifier: network.<name>.Select a device
Choose the underlying network device from the list (e.g.
eth0, eth0.2, br-lan). The available devices are read from /sys/class/net on the router.Configure static addressing (optional)
If you chose the
static protocol, fill in the IP address, netmask, gateway, and DNS server fields.Enable bridge (optional)
Check Bridge interfaces to set
type=bridge on the UCI section. This is required for bridged LAN configurations.Editing an existing interface
Open the edit form
Click the Edit button next to the interface you want to modify. The controller fetches the current values from the router via
uci get network.<iface>.<field> for each field (proto, ifname, ipaddr, netmask, gateway, dns).Modify fields
Update the protocol or static address fields as needed. Switching from
static to dhcp removes the IP, netmask, gateway, and DNS fields from UCI automatically.Restarting an interface
The Restart action affects only the selected interface, not the entire router.Stopping an interface
The Stop action brings an interface down without bringing it back up.Deleting an interface
The Delete action removes the UCI section for the interface and reloads the network:Refreshing the interface list
Navigate to/router2/refresh or click the Refresh button to clear the session-cached interface list. The page redirects back to /router2/interfaces and rebuilds the list from the current session state.
Rebooting the router
To reboot the entire router, use the Reboot button, which posts to/router2-reboot. The controller connects via SSH and sends the reinicio command, which triggers a full system restart.
The restart and stop actions are scoped to individual interfaces and do not reboot the router. Use the dedicated Reboot button only when you need to restart the entire device.