RouterOS自动任务设置
调度程序可以在特定时间或指定时间间隔之后触发脚本执行。 属性 interval (time; default: 0s) - 两次脚本执行的间隔,如果时间间隔设置为零,则脚本仅在其开始时间执行,否则在指定的时间间隔重复执行。 name name) - 任务名 on-event (name) - 需要执行的脚本名,必须是属于 /system 脚本。 run-count (read-only: integer) - 运行计数器,用来监控脚本的执行情况,脚本每执行一次该计数器递增一次。 start-date (date) - 第一次执行脚本的日期 start-time (time) - 第一次执行脚本的时间 startup - 系统启动后 3 秒执行脚本。 备注 重新启动路由器将重置运行计数计数器。 如果必须同时执行多个脚本,它们将按照它们在调度程序配置中出现的顺序执行。如果一个计划脚本用于禁用另一个脚本,那么这个顺序就很重要。 如果需要更复杂的执行模式,通常可以通过调度多个脚本并让它们相互启用和禁用来完成。 Note: if scheduler item has start-time set to startup, it behaves as if start-time and start-date were set to time 3 seconds after console starts up. It means that all scripts having start-time is startup and interval is 0 will be executed once each time router boots. If the interval is set to value other than 0 scheduler will not run at startup ...