I have a very similar question, we will be using multiple CheckPoint SPLAT firewalls and being able to track&manage changes with the new Cirrius application would be a great advantage. Does anyone know if the current version supports SPLAT?
Cirrus currently manages text based configs from devices that have a command line interface (cli). As long as the devices meet this criteria, Cirrus should be able to manage the devices. Cirrus has support for over 15 vendors out-of-the-box; however, additional device support can be added by building a new device template. Our support team can help you customize a device template. The support request link is https://forms.netsuite.com/app/site/crm/externalcasepage.nl?compid=638609&formid=12&h=3d0552f20b2e9bd6580b.
Nokia IPSO and SecurePlatform both support automated, scheduled and manual backups via TFTP already. If you REALLY wanted to use Cirrus to manage your configuration backups on IPSO or SecurePlatform you could create your own device template that would run the "upgrade_export" command and tftp the tgz file to your Cirrus TFTP server. Just a thought.
Thanks for the suggestion. I'm still in process of testing the tool so I'll give that a try.
Hi,
I now want to create script or something that will do the upgrade_export for me automatically.
I can create a command script but I don't know how to get the date inserted so that the name of the file is automatically created then that is ftp'd to our server.
If anyone has done this already that would be a great help.
Sam
I have a copy of the upgrade_tools in /var/tmp
file backup.sh
-----------------------------start of file-------
DATE=`/bin/date +%Y%m%d`
UNAME=`uname -n`
PTH='/var/tmp/upgrade_tools'
FILE=$UNAME'_backup_'$DATE.tgz
echo "\n" | /var/tmp/upgrade_tools/upgrade_export ${PTH}/${FILE} >> ${PTH}/backlog.txt 2>&1
/usr/bin/ftp -in ftp-server-ip <<EOC
user username password
binary
passive
put ${PTH}/${FILE} $FILE
close
bye
EOC