Re: Rsync pairing

2012-06-26 Thread Matthias Schniedermeyer
On 26.06.2012 14:18, András Porjesz wrote: > Hi all, > I have an rsyncd installed on a host and I want to use it from a lot of > clients. This rsync is not invoked directly but there is a shell script > wrapper co set up parameters and environment. > My problem is that I do not want to allow any

RE: Rsync pairing

2012-06-26 Thread András Porjesz
@lists.samba.org Subject: Re: Rsync pairing Okay, then you can do the following : - create a dedicated group "rsync" - chown/chmod /bin/rsync for that group only - add a setgid to your script with that group - use IP control in the rsyncd.conf to restrict users Thus only allowed users can access

Re: Rsync pairing

2012-06-26 Thread Greg Deback (rsync)
@gmail.com [mailto:greg@gmail.com] *On Behalf Of *Greg > Deback (rsync) > *Sent:* Tuesday, June 26, 2012 14:38 > *To:* András Porjesz > *Cc:* rsync@lists.samba.org > *Subject:* Re: Rsync pairing > > Hello, > You could simply create a dedicated group, set up permissions to

Re: Rsync pairing

2012-06-26 Thread Greg Deback (rsync)
And you can also restrict users given their IPs : Add at the top of the rsyncd.conf "hosts allow = 10.42.20.43/32" Greg On Tue, Jun 26, 2012 at 2:38 PM, Greg Deback (rsync) < greg.deb+rs...@gmail.com> wrote: > Hello, > You could simply create a dedicated group, set up permissions to your > script

RE: Rsync pairing

2012-06-26 Thread András Porjesz
Cc: rsync@lists.samba.org Subject: Re: Rsync pairing Hello, You could simply create a dedicated group, set up permissions to your script, and add only the desired remote users to that group. Greg On Tue, Jun 26, 2012 at 2:18 PM, András Porjesz mailto:andras.porj...@ericsson.com>> wrote:

Re: Rsync pairing

2012-06-26 Thread Greg Deback (rsync)
Hello, You could simply create a dedicated group, set up permissions to your script, and add only the desired remote users to that group. Greg On Tue, Jun 26, 2012 at 2:18 PM, András Porjesz wrote: > Hi all, > I have an rsyncd installed on a host and I want to use it from a lot of > clients. Thi