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

Scheduling a daily Save Job on WLC 9800

jjtech
Level 1
Level 1

Hello,

We have a WLC 9800, we need to create a job to save its running config to its startup config daily at midnight to make sure that the daily configuration changes will remain in case the WLC reloads for whatever reason, especially that we forget to click the Save button sometimes after doing modifications on the WLC.

I tried using the EEM script below but it isn't actually saving (also please note that we use TACACS for the WLC adminstration):

event manager applet DAILY_CONFIG_SAVE authorization bypass
event timer cron cron-entry "0 0 * * *" 
action 1.0 cli command "enable"
action 2.0 cli command "copy running-config startup-config"
action 3.0 syslog msg "Configuration saved by DAILY_CONFIG_SAVE"

 

In fact, the script is triggered and the syslog message is appearing , but the configurations not actually saved to the startup config.

Do you have any suggestion ? Or any alternative way to do it ?

1 Accepted Solution

Accepted Solutions

Rich R
VIP
VIP

You maybe forgot that by default copy running-config startup-config will always PROMPT the user.  Since EEM is not an interactive shell with capability to respond to the prompt that will always fail.  So you have 2 options:
- configure "file prompt quiet" before the copy then "no file prompt quiet" after.  You also need to "conf t" and "end" to do that config obviously.
- use "write mem" instead of copy run start as that does not prompt.  Cisco have threatened to remove the write command but it's still there all these years later so safe to keep using for now as long as you remember they might eventually remove it.

View solution in original post

2 Replies 2

Rich R
VIP
VIP

You maybe forgot that by default copy running-config startup-config will always PROMPT the user.  Since EEM is not an interactive shell with capability to respond to the prompt that will always fail.  So you have 2 options:
- configure "file prompt quiet" before the copy then "no file prompt quiet" after.  You also need to "conf t" and "end" to do that config obviously.
- use "write mem" instead of copy run start as that does not prompt.  Cisco have threatened to remove the write command but it's still there all these years later so safe to keep using for now as long as you remember they might eventually remove it.

jjtech
Level 1
Level 1

Thank you Rich, switching to Write Memory instead of copy run start fixed the issue.

Review Cisco Networking for a $25 gift card