cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
817
Views
0
Helpful
2
Replies

using event manager on 6513 switch

20vek
Level 1
Level 1

Hello everyone. Trying to create event manager event on 6513 switch IOS 12.2(33) to do rinning-config automatic back up but for some reason it does not work. Here is the set of commands:

event manager applet Archive_Configuration

event timer cron name "Archive_Configuration" cron-entry "0 1 * * *"

action 1.0 cli command "archive config"

It does not start applet. archive config works fine when triggered manually. Thanks in advance.

1 Accepted Solution

Accepted Solutions

Joe Clarke
Cisco Employee
Cisco Employee

This applet will run every day at 0100. You should be running NTP on this switch so that the internal clock is correct.

Next, your action list is wrong. The archive config command requires enable access. So, your applet should be:

event manager applet Archive_Configuration

event timer cron name "Archive_Configuration" cron-entry "0 1 * * *"

action 1.0 cli command "enable"

action 2.0 cli command "archive config"

View solution in original post

2 Replies 2

Joe Clarke
Cisco Employee
Cisco Employee

This applet will run every day at 0100. You should be running NTP on this switch so that the internal clock is correct.

Next, your action list is wrong. The archive config command requires enable access. So, your applet should be:

event manager applet Archive_Configuration

event timer cron name "Archive_Configuration" cron-entry "0 1 * * *"

action 1.0 cli command "enable"

action 2.0 cli command "archive config"

Oops, I missed enable command here. Thanks a lot for your help.