CPUG

The Check Point User Group

A Resource For The Check Point Community.  Fast.  Useful.  Independent.

1. CCSA/CCSE One-Week Dual-Certification Training Course with CPUG in San Francisco!
    Courses Starting 12/8, (2009) 1/19, 2/9, 3/9, 4/6, 5/4, 6/8, 7/6, 8/3.
2. Join Us On LinkedIn - We now have a CPUG group.


Go Back   CPUG: The Check Point User Group > Check Point Firewall-1/VPN-1 Platforms > Nokia And IPSO
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 2005-08-14
Administrator
 
Join Date: 2005-08-11
Location: San Francisco, CA
Posts: 582
Rep Power: 10
BarryStiefel has disabled reputation
Default Performing a backup without going through Voyager

Performing a backup without going through Voyager



The backup of the IPSO configurations via the Voyager web interface is no more than a tar and gzip of the following directories:
  1. /config
  2. /var/etc
  3. /var/cron

The following shell script can be executed via cron to back up the IPSO configuration on a regular basis:

------------------- CUT HERE ------------------------------#!/bin/sh## DESCRIPTION# IPSO_config_backup.sh# This script backs up the Nokia IPSO OS configurations.ARCHIVEDIR="/var/backup"BACKUPDIRS="config var/etc var/cron"DATE=`/bin/date +%y%m%d`HOSTNAME=`hostname`FILENAME=$HOSTNAME-$DATE# Clean up the backup archive directory first.# We don't want any config older than 3 months.cd $ARCHIVEDIRfind . -mtime +90 -exec rm {} \;# OK let's tar up the directories and gzip them.cd /tar cvf $ARCHIVEDIR/$FILENAME $BACKUPDIRS > /dev/null 2>&1gzip /var/backup/$FILENAMEmv $ARCHIVEDIR/$FILENAME.gz $ARCHIVEDIR/$FILENAMEchmod 644 $ARCHIVEDIR/$FILENAME

-- PhoneBoy - 01 Jan 2004

FAQForm FAQs.Class: FAQs.OS: OsNokiaIPSO FAQs.Version:
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -7. The time now is 12:15.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0