The administration page centralizes SSH access control for your router. You can adjust Dropbear’s listening configuration, change the root password, and manage the list of trusted public keys — all without a direct shell session. 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.
/sistema/administracion to access these settings.
SSH configuration
These settings control how Dropbear accepts incoming SSH connections.| Setting | Default | Description |
|---|---|---|
| Port | 22 | TCP port Dropbear listens on. Valid range: 1–65535. |
| Password authentication | on | Allow users to authenticate with a password. |
| Root login | on | Allow the root user to log in via SSH. Sets both RootPasswordAuth and RootLogin for compatibility across OpenWrt versions. |
| Gateway ports | off | Allow remote hosts to connect to forwarded ports. |
| Interface | (none) | Restrict Dropbear to a specific network interface. Leave blank to listen on all interfaces. |
Changing the port takes effect immediately after save. If you change the port, update any firewall rules and your SSH client configuration before the next connection attempt.
Change root password
Enter a new password
Type a new password in the New password field. The password must be at least 4 characters long.
SSH authorized keys
Authorized keys allow passwordless authentication using a public/private key pair. Keys are stored at/etc/dropbear/authorized_keys on the router.
Uploading a key
Generate a key pair (if you don't have one)
On your local machine, run:This creates a private key (
~/.ssh/id_ed25519) and a public key (~/.ssh/id_ed25519.pub).Upload the public key file
Click Upload public key and select your
.pub file. The application validates that the file begins with a recognized key type prefix before uploading.Supported key types:ssh-rsassh-ed25519ecdsa-sha2-nistp256ecdsa-sha2-nistp384ecdsa-sha2-nistp521
Viewing existing keys
The key list displays each authorized key with:- Type — the algorithm family (RSA, ED25519, ECDSA)
- Label — the comment field from the key file
- Preview — first and last 28 characters of the base64 key body
Deleting a key
Click Delete next to any key to remove it. The application rewritesauthorized_keys excluding the selected entry, then restarts Dropbear.