Search found 9 matches

by mfuhrmann
2013/02/01 21:34:34
Forum: CentOS 6 - Software Support
Topic: LDAP group check
Replies: 2
Views: 483

Re: LDAP group check

Here the solution:

[code]/usr/lib64/squid/squid_ldap_group -R -K -b "dc=domain,dc=local" -D administrator -w "AdminPW" \
-f "(&(objectclass=person)(sAMAccountName=%v) \
(memberof=cn=%g,ou=UserGroups,dc=domain,dc=local))" -h domaincontroller[/code]

Thanks for help.
by mfuhrmann
2013/01/22 07:34:56
Forum: CentOS 6 - Software Support
Topic: LDAP group check
Replies: 2
Views: 483

LDAP group check

Good morning, i'm trying to to configure squid to use a ldap (ADS 2008) group check to give access to the internet. The user TESTUSER is in OU3. The group INTERNET is in a OU called USERGROUPS. TESTUSER is member of INTERNET. But it doesn't work. [code]/usr/lib64/squid/squid_ldap_group -d -v3 -b 'ou...
by mfuhrmann
2013/01/10 14:57:29
Forum: CentOS 6 - Software Support
Topic: LDAP GroupCheck - Squid
Replies: 1
Views: 597

LDAP GroupCheck - Squid

Hello! i've tried to grant a specific ldap group (ADS) called "Internet" access to the internet. Squid provides a tool called squid_ldap_group to check ldap memberships. This is my command: [quote]/usr/lib64/squid/squid_ldap_group -b "cn=Internet,ou=User_Gruppen,dc=test,dc=local" -D "cn=ldap,ou=User...
by mfuhrmann
2012/11/28 15:59:22
Forum: CentOS 6 - Software Support
Topic: [SOLVED] rrdtool v 1.4
Replies: 3
Views: 18622

Re: [SOLVED] rrdtool v 1.4

solved the problem with:

[code]wget http://pkgs.repoforge.org/rrdtool/perl-rrdtool-1.4.7-1.el6.rfx.x86_64.rpm
wget http://pkgs.repoforge.org/rrdtool/rrdtool-1.4.7-1.el6.rfx.x86_64.rpm
yum install libdbi -y
rpm –ivh perl-rrdtool-1.4.7-1.el6.rfx.x86_64.rpm rrdtool-1.4.7-1.el6.rfx.x86_64.rpm[/code]
by mfuhrmann
2012/11/28 14:58:12
Forum: CentOS 6 - Software Support
Topic: [SOLVED] rrdtool v 1.4
Replies: 3
Views: 18622

[SOLVED] rrdtool v 1.4

Hello!

is there any chance to get the latest rrdtool installed with yum? Are there any repositories for it?

Thanks for help.

--
Marcel
by mfuhrmann
2012/11/28 14:50:14
Forum: CentOS 6 - Security Support
Topic: [SOLVED] selinux and sftp
Replies: 8
Views: 20874

Re: [SOLVED] selinux and sftp

Here the solution: [code]man ftpd_selinux[/code] [code] SHARING FILES If you want to share files with multiple domains (Apache, FTP, rsync, Samba), you can set a file context of public_content_t and public_con‐ tent_rw_t. These context allow any of the above domains to read the content. If you want ...
by mfuhrmann
2012/11/05 12:56:44
Forum: CentOS 6 - Security Support
Topic: [SOLVED] selinux and sftp
Replies: 8
Views: 20874

Re: selinux and sftp

The directory /data is a mountpoint. This partition is provided by lvm.

[code]/dev/mapper/vg_srvftp0101-data on /data type ext4 (rw)[/code]

Does this fact affect selinux?
by mfuhrmann
2012/11/05 10:35:38
Forum: CentOS 6 - Security Support
Topic: [SOLVED] selinux and sftp
Replies: 8
Views: 20874

Re: selinux and sftp

Hi TrevorH, thanks for your fast response. Hi This happened: [quote] [root@localhost ~]# aureport -a AVC Report ======================================================== # date time comm subj syscall class permission obj event ======================================================== 1. 11/04/2012 17:...
by mfuhrmann
2012/11/05 09:51:42
Forum: CentOS 6 - Security Support
Topic: [SOLVED] selinux and sftp
Replies: 8
Views: 20874

[SOLVED] selinux and sftp

Hello, i'm trying to get a sftp server working. The users are chrooted but selinux does not allow connection in enforced mode. When it's disabled all works fine :-) But that's surely not the solution. I found some howtos for selinux, but it seems to be a complex topic and i'm not able to apply this ...