search for: rsync_proxy

Displaying 20 results from an estimated 24 matches for "rsync_proxy".

2003 Oct 23
0
RSYNC_PROXY
Hi all, I am interested at using a web proxy to help speed a transfer across a WAN. Are there any examples of syntax for the RSYNC_PROXY command available? Thanks, Max -- Max Clark <maxc at beast.clarksys.com> My Blog http://www.clarksys.com >> spamtrap: spam@clarksys.com - do NOT ever send email to this address <<
2002 Mar 21
2
Start Rsync Error
...rsion on Linux Redhat 6.2 (Kernel-2.2.14-5.0), after installed I tried to test the rsh and run "rsh remotehost /bin/true > out .dat". But it failed the error message was "Permission denied". I checked the permission all was okay, I forgot the rsh/csh methods and replaced by RSYNC_PROXY. Finally, it failed again. I would like to know that if the rsync establish the connection via a web Proxy. What is the startup and configuration steps? I will use synch to sync. data on my following project. Could you solve my problem! The command run ==> # ./rsync --server --daemon Result...
2002 Jan 19
1
Rsync through proxy using HTTP Basic Authentication?
Is it possible to rsync through a firewall that requires HTTP basic authentication? The RSYNC_PROXY variable seems to correctly direct the request to go through the HTTP proxy server on the firewall, but there's no way to specify a username/password combo. The error message reported by rsync is "bad response from proxy - HTTP/1.1 401 Authentication required", which is not unexpecte...
2004 Feb 06
1
Rsync 2.5.7 local buffer overflow
Hi folks, I've discovered a local stack overflow bug in rsync 2.5.7. Problem is in open_socket_out function (socket.c). ... char portbuf[10]; char *h; int proxied = 0; char buffer[1024]; char *cp; ... h = getenv("RSYNC_PROXY"); proxied = (h != NULL) && (*h != '\0'); ... if (proxied) { strlcpy(buffer, h, sizeof(buffer)); cp = strchr(buffer, ':'); if (cp == NULL) { rprintf(FERROR,...
2007 Apr 27
1
Prevention of outgoing file transfers?
Hi, Does anyone know if it is possible to firewall and/or configure rsync via a web proxy using RSYNC_PROXY to prevent push mode file transfers yet still allow pull mode? I am aware of Matt McCutchen's helpful distinction between the direction of an rsync connection and the direction of file transfer at at http://lists.samba.org/archive/rsync/2006-May/015595.html, but I am after something slight...
2005 Jun 28
1
Running ./tools/rsync-recommended through a proxy
...aven't been able to configure rsync. My usual method of updating my copy of the R-devel sources is via cd my_R_devel_sources svn up ./tools/rsync-recommended cd my_R_build_directory ... Can anyone offer suggestions on how to get rsync-recommended to work through a proxy? I have set export RSYNC_PROXY="machine.name:3128" which I understand from the documentation is the magic environment variable (I don't give the name of the server explicitly because it is an open proxy). However, I still get bates at bates4:/usr/src/r-devel$ ./tools/rsync-recommended bad response from proxy - H...
2007 Apr 17
4
HTTP encapsulated rsync??
Hi folks, I am hoping someone here can offer some suggestions. Here is my situation: I am using rsync over the internet for several hundred clients to keep them in sync with a master repository of files. The rsync daemon is listening on port 80, because most of the clients are behind firewalls that only allow outbound port 80 (and other common ports). This works fine for most of them
2005 Feb 05
1
help with web proxying for anonymous rsync
...ProxyPass /rsync-module/ rsync://localhost:873/rsync-module 2. I have a rsyncd.conf that looks something like this log file = /var/log/rsyncd.log pid file = /etc/rsyncd.pid [rsync-module] path = /path/to/my/module # hosts allow = x.x.x.x timeout = 200 3. Next, I set my RSYNC_PROXY environment variable to: setenv RSYNC_PROXY my.machine.org:80 4. Finally, I send a request to rsync as rsync my.machine.org::rsync-module In the httpd acess log I see, x.x.x.x - - [05/Feb/2005:13:08:07 -0500] - "-" "CONNECT my.machine.org:873 HTTP/1.0" 200 16216 So t...
2005 Nov 01
0
proxying rsync through http
Hi All, I'm trying to get rsync to proxy through an apache httpd server to an rsync server. On the proxy, which has a direct connection to the internet, I've stopped the firewall and unset HTTP_PROXY and RSYNC_PROXY. I've configured the httpd to allow proxy requests as follows: <IfModule mod_proxy.c># ProxyRequests On <Proxy *> Order deny,allow Deny from all Allow from .mydomain.ie </Proxy> # # Enable/disable the handling of HTTP/1.1 "Via:" headers. # ("Ful...
2004 Jan 05
0
No subject
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ /users/tconway>man rsync |grep environment Reformatting page. Wait... done environment variable. the environment variable RSYNC_PROXY to a hostname:port pair environment variable RSYNC_PASSWORD to the password you want WARNING: On some systems environment variables are visible RSYNC_RSH environment variable. The CVSIGNORE environment variable supplements any The RSYNC_RSH environment...
2006 Nov 06
0
rsync using proxy server
Hello all! I'm trying to syncronize 2 directories on 2 servers (A and B) using 3rd server (C) as proxy server. what i did is: - installed http proxy (tinyproxy) on C and configured it to run on port 873 - default port for rsync protocol. - set the variable RSYNC_PROXY to C-ip:873 using command export RSYNC_PROXY=C-ip:873 - run the rsync command without ssh support. as a result the directories are syncronized, but the proxy is not used. What can be the problem, please?
2003 May 14
0
Basic HTTP Proxy Authentication: patch update
Hi all, My patch for supporting "Basic" HTTP Proxy Authentication has been updated for rsync 2.5.6 by Martin Ehmsen. The patch changes the interpretation of the RSYNC_PROXY environment variable so that the syntax user:pass@proxy.foo.com:port may be used instead of just proxy.foo.com:port (the old syntax is, of course, still supported). The updated patch is available at: http://www.imada.sdu.dk/~bardur/personal/patches.html (and i've attached the...
2002 Apr 04
1
[patch] Basic HTTP Proxy Authentication
Hi all, I have put together a patch for supporting "Basic" HTTP Proxy Authentication. The patch changes the interpretation of the RSYNC_PROXY environment variable so that the syntax user:pass@proxy.foo:port may be used instead of just proxy.foo:port (the old syntax is of course still supported). The patch has only been tested lightly, but it should(TM) work. The patch (and future versions of it) is available at: http://...
2019 Jan 07
0
how to set proxy systemwide (wget and docker)
..."http://${PROXYHOST}:${PROXYPORT}" export ALL_PROXY="http://${PROXYHOST}:${PROXYPORT}" export no_proxy="localhost,$(hostname -s),$(hostname -f),$(hostname -d),127.0.0.1" export NO_PROXY="localhost,$(hostname -s),$(hostname -f),$(hostname -d),127.0.0.1" export RSYNC_PROXY="${PROXYHOST}:${PROXYPORT}" unset PROXYHOST PROXYPORT CFGFILE -----%<--------------------------------- Regards, Simon
2003 Jun 25
0
[patch] Basic HTTP Proxy Authentication
On 2002-Apr-04 at 02:24:41 -0800, Bardur Arantsson wrote: > I have put together a patch for supporting "Basic" HTTP Proxy > Authentication. The patch changes the interpretatio of the RSYNC_PROXY > environment variable so that the syntax > > user:pass@proxy.foo:port > > may be used instead of just > > proxy.foo:port > > (the old syntax is of course still supported). There is a problem with the way this syntax is being handled by the patch. It's because of t...
2004 Aug 10
1
rsync erroring out when syncing a large tree
...to write 4092 bytes: phase "unknown": Broken pipe rsync error: error in rsync protocol data stream (code 12) at io.c(666) The exact command used is: rsync -av --stats --progress --partial --delete-after --bwlimit=2000 rsync://mirrors.usc.edu/mandrakelinux/ /export/ftp/mandrakelinux $RSYNC_PROXY is set to be a squid proxy, which is very reliable for other forms of transfer (ftp/http) It's synching to a 1.6TB raid array, which still has over 1TB free, so its not a space issue. Anyone know a) what causes this error and b) how I can get round it? Cheers, Mark. - -- Mark Watts Seni...
2004 Oct 22
0
rsync failing
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Using the following settings: $ export RSYNC_PROXY=www-proxy:3125 $ rsync -av --stats --progress --partial --delete-after --bwlimit=160 rsync://carroll.cac.psu.edu/mandrakelinux/ /export/ftp/mandrakelinux I'll almost certainly get this error at some point during the transfer: rsync: connection unexpectedly closed (320497666 bytes received so...
2007 Sep 09
1
rsync to blastwave mirror on solaris 10
Hi, all I am having issues trying to rsync to a blastwave mirror on my Solaris 10 server. Here's the error: -bash-3.00# rsync rsync://www.ibiblio.org/sun-packages/csw rsync: failed to connect to www.ibiblio.org: Connection timed out (145) rsync error: error in socket IO (code 10) at clientserver.c(104) [receiver=2.6.9] -bash-3.00# We have a proxy server and wanted to know how to get
2012 Nov 02
2
Rsync problem when connected to mirror site
...t in data send /received (code 30) at ioc (140) [receiver=3.0.9] rsync: connection unexpectedly closed (973 bytes received so far) rsync error: error in rsync protocol data stream (code 12) at io.c (343) I'm using Ubuntu OS version 12.4. Here is the script we use for rsync #!/bin/sh export RSYNC_PROXY="proxy server.com:80" rsync="/usr/bin/rsync -aviHz --delete --progress --timeout=10" # Centos mirror=rsync://rsync.gtlib.gatech.edu/centos #local=/data/mirrors/centos $rsync $mirror $local I've searched through Google, but have not found much. Does anybody know what this...
2019 Oct 21
4
Problems with internal DNS
Hi! Samba server set up for domain rufus.ada.de a proxy is reachable in proxy.ada.de. resolv.conf is configured to be: domain rufus.ada.de. search rufus.ada.de. miri.ada.de. ada.de. nameserver 127.0.0.1 Internal servers are handled (by an external DNS, our internal samba DNS forwards to): # host proxy.ada.de proxy.ada.de has address 10.169.16.3 For deb.debian.org: # host deb.debian.org