📅  最后修改于: 2023-12-03 15:02:57.631000             🧑  作者: Mango
Mikrotik Restart is a command used to restart the Mikrotik router or server. It is used to re-initiate the system after changes have been made to the configuration, to troubleshoot issues, or to upgrade the firmware.
/system reboot
The reboot
command accepts several parameters:
cause
(string) - A reason for the reboot. This parameter is optional and is used to specify the cause of the reboot. It can be used to help identify the reason for the reboot when viewing the system logs.without-defaults
(yes|no) - A flag indicating whether to keep the default configuration during the reboot. If this flag is set to yes
, the router will not load the default configuration during the reboot. This parameter is optional.To restart the router with a cause and without loading the default configuration:
/system reboot cause="Configuration changes" without-defaults=yes
To restart the router without a cause and without loading the default configuration:
/system reboot without-defaults=yes
Mikrotik Restart command is an essential tool used in maintaining the Mikrotik router or server. It provides an easy way to restart the system after changes have been made to the configuration. It is simple to use and has various parameters that can be used to customize the reboot process.