CCR Screen

Every time I reboot my cloud core router, I have to go back into the menu and choose to see the statistics for a specific interface, and then show the bandwidth graph. Is there anyway to have it boot up and the screen show the bandwidth graph automatically and stay on that screen?

You’re probably looking for /lcd
Ref: https://help.mikrotik.com/docs/display/ROS/LCD+Touchscreen

Example that will set the screen to show only the bandwidth graph for one interface (or only interfaces that aren’t disabled in /lcd interface).

/lcd
set backlight-timeout=never default-screen=stats touch-screen=disabled
/lcd interface
# turn off the interfaces you don't want to graph
set ether2 disabled=yes
# ...
set sfp1 disabled=yes
# ...
/lcd screen
# turn off everything but the bandwidth graph
set 1 disabled=yes
set 2 disabled=yes
set 3 disabled=yes
set 4 disabled=yes
set 5 disabled=yes

Awesome, thanks!