been a long time I did not write this article on my blog.
okay .. on this occasion I would like to share a tutorial on how to perform automatic backup mikrotik which in this case I want to save it to my FTP server.
for the illustrations like this:
--- Mikrotik backup configuration - sending backup configuration to FTP Server - mikrotik configuration backup file stored on the FTP Server
This is useful if we do a lot of management to mikrotik router, and want to save your backup file from mikrotik into a lot of resources, and if one day there is an error on a router, we just download the backup files into the troubled mikrotik router
lets do it ..
A. we assume that we already have a FTP server with the IP: 10.20.30.254 (recommendation using Public IP) with the username: password Fathur: Fathur and running on port: 2100
2. we assume again that we've set up on a mikrotik that will be made of materials testing
3. log into the Mikrotik, then the first time that we will make is to add a script that will be created to perform automatic backups
example:
this tutorial have been finished, lets practice for out mikrotik router,, :)
okay .. on this occasion I would like to share a tutorial on how to perform automatic backup mikrotik which in this case I want to save it to my FTP server.
for the illustrations like this:
--- Mikrotik backup configuration - sending backup configuration to FTP Server - mikrotik configuration backup file stored on the FTP Server
This is useful if we do a lot of management to mikrotik router, and want to save your backup file from mikrotik into a lot of resources, and if one day there is an error on a router, we just download the backup files into the troubled mikrotik router
lets do it ..
A. we assume that we already have a FTP server with the IP: 10.20.30.254 (recommendation using Public IP) with the username: password Fathur: Fathur and running on port: 2100
2. we assume again that we've set up on a mikrotik that will be made of materials testing
3. log into the Mikrotik, then the first time that we will make is to add a script that will be created to perform automatic backups
example:
log info "Starting Automatic Backup Script Configure By cr0c0dil3":global thisdate [/system clock get date]:global datetimestring ([:pick $thisdate 0 3] ."-" . [:pick $thisdate 4 6] ."-" . [:pick $thisdate 7 11])
/system backup save name="$[/system identity get name]_$datetimestring":log info "Please wait...!!!":delay 5s:log info "Sending Backup Mikrotik to FTP Server............."/tool fetch address=10.20.30.254 src-path="$[/system identity get name]_$datetimestring.backup" user=fathur password=fathur port=2100 upload=yes mode=ftp dst-path="$[/system identity get name]_$datetimestring.backup":delay 1:log info "Finished Backup Script...!!!!"
this tutorial have been finished, lets practice for out mikrotik router,, :)