Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by nainasipra
at 2024-07-21 00:30:41
Point:500 Replies:3 POST_ID:829050USER_ID:10
Topic:
Network Routers;Cisco PIX Firewall;Networking Hardware
how to schedule restart Cisco Router at everyday midnight?
Expert: Joshua1909 replied at 2024-07-22 21:22:11
Hi,
Matt's commands are correct, you will also need to configure EEM to run with credentials on the router.
(config)# event manager session cli username "LocalRouterUsernameHere"
Matt's commands are correct, you will also need to configure EEM to run with credentials on the router.
(config)# event manager session cli username "LocalRouterUsernameHere"
Expert: duncanb7 replied at 2024-07-21 01:45:47
You can use Cisco IOS Kron and Kiwo-cattols for free trial version for testing example
that describled at this link
http://write.keinism.com/2008/04/07/cisco-scheduled-task-options-kron-and-kiwi-cattools/
http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/cns/configuration/xe-3s/asr1000/cns-xe-3s-asr1000-book/cns-cmd-sched.html
Hope unserstand your question completely.If not , please pt it out
Duncan
that describled at this link
http://write.keinism.com/2008/04/07/cisco-scheduled-task-options-kron-and-kiwi-cattools/
http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/cns/configuration/xe-3s/asr1000/cns-xe-3s-asr1000-book/cns-cmd-sched.html
Hope unserstand your question completely.If not , please pt it out
Duncan
Accepted Solution
Expert: Matt replied at 2024-07-21 00:46:53
500 points EXCELLENT
Try this:
event manager applet router-reload
event timer cron name reload-timer cron-entry "0 2 * * 1,4"
action 1.0 syslog msg "Initiating periodic reload"
action 2.0 reload
In this example router reloads every 1st and 4th day in week, at 02:00. Cron is composed out of five parameters, separated by space:
min hour date month day-of-week
More help here: http://ciscoaspirants.com/2011/10/15/embedded-event-manager/
event manager applet router-reload
event timer cron name reload-timer cron-entry "0 2 * * 1,4"
action 1.0 syslog msg "Initiating periodic reload"
action 2.0 reload
In this example router reloads every 1st and 4th day in week, at 02:00. Cron is composed out of five parameters, separated by space:
min hour date month day-of-week
More help here: http://ciscoaspirants.com/2011/10/15/embedded-event-manager/