The scheduled tasks page gives you a text editor for the router’s crontab. You can read the current schedule, make changes, and save — the cron daemon restarts automatically so changes take effect without manual intervention. 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.
/router4/tareas to access this page.
How it works
When the page loads, the application retrieves the existing crontab:Cron syntax
Each crontab line follows the format:* (any value), or /n (every nth interval).
Field reference
| Field | Allowed values | Example |
|---|---|---|
| Minute | 0–59 | 30 = at :30 past the hour |
| Hour | 0–23 | 2 = 2:00 AM |
| Day of month | 1–31 | 1 = 1st of the month |
| Month | 1–12 | 6 = June |
| Day of week | 0–7 (0 and 7 = Sunday) | 1 = Monday |
Tips for OpenWrt
- Use full paths for commands (e.g.,
/usr/bin/pingrather thanping) since cron runs with a minimal environment. - Redirect output to suppress email notifications:
command > /dev/null 2>&1 - The cron log level is configurable on the system settings page.
Saving an empty crontab removes all scheduled tasks. If you want to disable a task temporarily, comment it out by prefixing the line with
# rather than deleting it.