Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuration Automatic Backup

Status
Not open for further replies.

bbaits25

Technical User
Joined
Aug 7, 2013
Messages
135
Location
US
Hey Guys,

I was wondering if you can setup a automatic backup schedule for the Avaya IPO 8.1, I wanted to set it to backup the configuration file once a week.

Thanks!
 
If you have a 500V2: Put in a Secondary SD card.
Manager: System/System> Automatic Backup: On (default)

A backup config is also stored on the Manager computer every time you make changes to the system.

Kind regards

Gunnar
__________________________________________________________________
Hippos have bad eyesight, but considering their weight, it’s hardly their problem
 
Not directly. Best way is to setup a batch file that gets the backup via TFTP. Copy what is in here to backup.bat, and run that on a schedule. Change 192.168.42.1 to whatever your IP Office address is, and change the backup path to whatever you need it to be.
FYI, on new systems like server 2008, windows 7, tftp client is not installed by default, so you'll have to do that through the add windows features.

*note* this is just a very rough backup script. You can customize it how you wish.

Code:
@echo off
echo Daily IPO Backup In Progress...please stand by
echo ..
set ipo="192.168.42.1"
set putithere="c:\configbackup\\"
set mydate=%date:~4,2%%date:~7,2%%date:~10,4%
echo ......
tftp -i %ipo% GET "config/$t%%$'~ q" %putithere%%mydate%.cfg
echo .............All done! Have a nice day!
PING %ipo% -n 1 -w 10000 >NUL
attrib -R %putithere%%mydate%.cfg
PING %ipo% -n 1 -w 10000 >NUL
PAUSE





-Austin
ACE: Implement IP Office
qrcode.png
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top