Unsolved

This post is more than 5 years old

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?

April 11th, 2007 07:00

Thanks for your reply Hrvoje.

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.

6 Operator

 • 

14.4K Posts

 • 

56.2K Points

April 11th, 2007 07:00

What I would do is:
- 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

6 Operator

 • 

14.4K Posts

 • 

56.2K Points

April 11th, 2007 07:00

No, but with newer versions you can run reports to see when the last backup was done and have it backed up. EBA will do the same too (but backup is still something you must trigger).

What you ask, as complete solution, can be easily scripted.

April 11th, 2007 10:00

I already do something that for systems that do not have the local batch file installed, but it's good to see that i'm on the right track.

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.

April 12th, 2007 10:00

Still, no other ideas??

0 events found

No Events found!

Top