Re-read your post.

Thought you said 300gb (that's what we have, give or take).

I wouldn't run BackupPC on the remote server.  Just do an rsync from the 
local to the remote.  Then you only need an incoming SSH port on the 
other side.  Setup ssh with keys between the two (get it so you can 
type  ssh [EMAIL PROTECTED]  and not need to input a password.  There are 
varying degrees of debate about whether or not this is secure, but with 
proper firewalling (exclude access to port 22 except from "whichever" ip 
address(es)...  http://www.linux.com/articles/113847  (start with the 
section on Automatic Backups, to configure the above)..

The following is a script that I found somewhere, modified for my use / 
situation / then sanitized from there :)  Change everything in <> and 
also make sure your ~/PATH/TO/KEYFILE is correct.

#!/bin/sh
DEST="<remotemachine>"
USER="<remoteuser>"
BACKDIR="<source files>"
DESTDIR="<destination files>"
# Does copy, but still gives a verbose display of what it is doing
OPTS="-v -u -a --rsh=ssh -i ~/PATH/TO/KEYFILE --exclude-from=$EXCLUDES 
--stats"
# Copies and does no display at all.
#OPTS="-a -u --rsh=ssh -i ~/PATH/TO/KEYFILE --exclude-from=$EXCLUDES 
--quiet"
# May be needed if run by cron?
export PATH=$PATH:/bin:/usr/bin:/usr/local/bin
/bin/nice -19 rsync $OPTS $BACKDIR [EMAIL PROTECTED]:$DESTDIR

[EMAIL PROTECTED] wrote:
> I have backuppc running on my LAN, and I want to send the backups over a
> T1 line to a remote server. I have about 30Gig of data on my backuppc
> partition. I tried using an archive host and it's to slow to stream all
> that data.
>
> So I installed backuppc on the remote server and setup rsync between the
> two servers. The backups should "flow" in ca "cascade effect" to the
> remote server now. What do more experienced users think of this setup?
>
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> BackupPC-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/backuppc-users
> http://backuppc.sourceforge.net/
>
>   

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to