Unsolved
This post is more than 5 years old
16 Posts
0
423
April 11th, 2007 06:00
Backing up a moble laptop using Enterprise Backup 7.2
I have several laptops that are sometimes disconnected from the
network when the regularily scheduled backup occurs,so they are not backed up.
Is there a way to configure Networker so it looks for laptops that
haven't been backed up recently (missed the regular backup) and
automatically kick off an INCREMENTAL or FULL depending on how long
it's been?
network when the regularily scheduled backup occurs,so they are not backed up.
Is there a way to configure Networker so it looks for laptops that
haven't been backed up recently (missed the regular backup) and
automatically kick off an INCREMENTAL or FULL depending on how long
it's been?
0 events found
No Events found!


Timothy-NXOi5
16 Posts
0
April 11th, 2007 07:00
I have created a 'quick and dirty' batch file that runs on the laptop when the user signs on. It checks to see if a datestamp file has today's date. If it doesn't, then it runs a SAVEFS on a particular filesystem. If it does, then it ends.
I would like something that is on the server end rather than the client.
What I was looking for is that when the laptop is connected to the network, the Networker server would see it (maybe by running a schedule of every hour or so) and if it locates one that needs backing up would run whatever group is scheduled for that day.
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
1
April 11th, 2007 07:00
- group all laptop clients to some input file and one NW group
- query with mminfo for last successful backup and its level for all clients from input
- ping those identified for backup and if response is there believe those are online (I would prefer rpcinfo -t or nsradmin query more due to many other reasons, but ping is simple and quick)
- run backup from server by calling group with -c for each client we wish to backup
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
April 11th, 2007 07:00
What you ask, as complete solution, can be easily scripted.
Timothy-NXOi5
16 Posts
0
April 11th, 2007 10:00
Ideally, this would all be automatic.
Example of the 'ping check'
:: pingip.bat
@echo off
for /f "tokens=*" %%I in (IPlist.txt) do call :pinger %%I
goto :eof
:pinger
:: echo %TIME% >> pingLOG.txt
ping -n 1 %1 >> pingLOG.txt
:: DONE
The systems that require backup are exported to a txt file 'IPlist.txt' and the batch file run to ping one time and append the pinglog.txt with the result.
Timothy-NXOi5
16 Posts
0
April 12th, 2007 10:00