Forum Discussion
How to Automate Backup ucs file
iCalls is what you need. Here is an iApp template that configures periodic backup using an iCall. https://devcentral.f5.com/wiki/iCall.Generate_Config_Backup.ashx
Simply unzip the "f5.archiving.v1.0.1.tmpl" iApp template, import it to BigIP GUI under iApps/Templates. Then create an iApp service using the newly imported template. You will be impressed.
Also read this great article about performing backups with iCalls. Jason's Article.
A cron job configuration is not saved to the UCS but an iCall is saved as well as config synched to peer.
Here is where you can read about iCalls.
If you were to create an iCall by hand you would create two things, an iCall handler and an iCall script, here are examples:
sys icall handler periodic f5.config_backup {
first-occurrence 2013-06-26:08:18:00
interval 86400
script f5.config_backup
}
sys icall script f5.config_backup {
app-service none
definition {
Set Current Date/Time for Filename
set cdate [clock format [clock seconds] -format "%Y%m%d%H%M%S"]
Pull hostname from config for Filename
set host [tmsh::get_field_value [lindex [tmsh::get_config sys global-settings] 0] hostname]
Create Temp Directory
set tmpdir [exec mktemp -d /var/tmp/f5backup.XXXXXXXXXX]
Set Filename Root
set fname "f5backup-$host-$cdate"
Export UCS
tmsh::save /sys ucs $tmpdir/$fname
}
description none
events none
}
HTH
- Sheela_Narayan_Jan 22, 2014NimbostratusThanks John
Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com