Re: [pfSense Support] automatic backup

2006-06-28 Thread Robert Goley
I have been attempting to backup this information also. It is working for me using HTTP. I saw the answer for downloading via HTTPS. Using a browser you are allow to download just certain sections of the config. How would this be accessed via the wget command? For example, I would like to

Re: [pfSense Support] automatic backup

2006-06-28 Thread Scott Ullrich
On 6/28/06, Robert Goley [EMAIL PROTECTED] wrote: I have been attempting to backup this information also. It is working for me using HTTP. I saw the answer for downloading via HTTPS. Using a browser you are allow to download just certain sections of the config. How would this be accessed via

Re: [pfSense Support] automatic backup

2006-06-28 Thread Bill Marquette
FWIW, after 1.0 this will break as we are no longer using HTTP Basic auth. At that point you'll have to switch to using xmlrpc. --Bill On 6/27/06, Imre Ispánovits [EMAIL PROTECTED] wrote: On Tue, 27 Jun 2006 10:59:39 -0400 Scott Ullrich [EMAIL PROTECTED] wrote: Use exec_raw.php and simply

RE: [pfSense Support] automatic backup

2006-06-28 Thread Craig FALCONER
Fair enough - can you put the recommended answer in the docs somewhere? Automated backups my memory. -Original Message- From: Bill Marquette [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 June 2006 9:21 a.m. To: support@pfsense.com Subject: Re: [pfSense Support] automatic backup FWIW

RE: [pfSense Support] automatic backup

2006-06-27 Thread Lawrence Farr
Works here with http: not https: -Original Message- From: Imre Ispánovits [mailto:[EMAIL PROTECTED] Sent: 27 June 2006 13:48 To: support@pfsense.com Subject: [pfSense Support] automatic backup Hi, On m0n0wall I've used a small script to backup configuration from cron time

Re: [pfSense Support] automatic backup

2006-06-27 Thread Scott Ullrich
Use exec_raw.php and simply cat out /cf/conf/config.xml Something like this: wget -qO /tmp/config_backup.xml --user=admin --password=pfsense --no-check-certificate https://10.0.0.103/exec_raw.php?cmd=cat /cf/conf/config.xml On 6/27/06, Imre Ispánovits [EMAIL PROTECTED] wrote: Hi, On m0n0wall

RE: [pfSense Support] automatic backup

2006-06-27 Thread Holger Bauer
I guess the --no-check-certificate already should do the trick. -Original Message- From: Scott Ullrich [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 5:00 PM To: support@pfsense.com Subject: Re: [pfSense Support] automatic backup Use exec_raw.php and simply cat out /cf

Re: [pfSense Support] automatic backup

2006-06-27 Thread Imre Ispánovits
On Tue, 27 Jun 2006 10:59:39 -0400 Scott Ullrich [EMAIL PROTECTED] wrote: Use exec_raw.php and simply cat out /cf/conf/config.xml Something like this: wget -qO /tmp/config_backup.xml --user=admin --password=pfsense --no-check-certificate https://10.0.0.103/exec_raw.php?cmd=cat