Displaying 9 results from an estimated 9 matches for "authldapgroupattributeisdn".
2015 May 11
6
Authenticating Apache Against Active Directory
...pache2.conf' with
<Directory />
Options FollowSymLinks
AllowOverride None
Require all granted
Allow from all
AuthName "AD authentication"
AuthBasicProvider ldap
AuthType Basic
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDN On
AuthLDAPURL
ldap://dc1.domain.local/172.16.232.29:389/cn=Users,dc=domain?sAMAccountName?sub?(objectClass=*)
AuthLDAPBindDN cn=apache-connect,cn=Users,domain
AuthLDAPBindPassword password
require ldap-group cn=Nagios-Admins,cn=Users,domain
and attempt to restart...
2008 Apr 10
2
mod_auth_ldap Apache2 on CentOS 5 and require group
...i wan to access svn trought apache using mod auth ldap.
This is what i have configured
AuthLDAPBindDN cn=svn,ou=Operators,o=Organization
AuthLDAPBindPassword Pass1
AuthLDAPURL "ldap://ldap/ou=Users,o=Organization?uid"
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDN on
Require group cn=tester2,ou=Groups,o=Organization
What is strange?
According to doc it will accept only users which DN is in group
cn=teste2,ou=Groups,o=Organization.
How come, for me it will accept every one user from LDAP?
Thanks in advance!
-------------- next part --------------...
2015 Oct 07
1
Working configuration for Apache 2.4 auth vs Samba 4 AD
...DAP_authentication
Here is my working configuration (thanks to
http://httpd.apache.org/docs/2.4/en/mod/mod_authnz_ldap.html)
First you need authnz_ldap module for Apache.
<Location />
AuthName "AD authentication"
AuthBasicProvider ldap
AuthType Basic
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDN On
AuthLDAPURL "ldap://addc1:3268/?sAMAccountName?sub
AuthLDAPBindDN apache-connect at contoso.com
AuthLDAPBindPassword password
Require ldap-group CN=Sysadmins_GRP,OU=groups,OU=company,DC=contoso,DC=com
</Location>
Hope this will help someone and could be a good idea to update the wiki...
2017 Apr 04
1
Apache2 Kerberos-Authentication and LDAP-Authorization
...ets a known password instead of a
random.
<Directory "/login.html">
AuthType Kerberos
AuthName "Network Login"
KrbMethodNegotiate On
KrbMethodK5Passwd On
KrbAuthRealms X.Y
Krb5KeyTab /etc/apache2/apache.keytab
KrbLocalUserMapping On
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDn On
# Adding cn and displayName is optional, but provides the value
# as environment variables to the script
# e.g.: AUTHORIZE_DISPLAYNAME="John Doe"
AuthLDAPURL
ldaps://{ad-server}/CN=Users,DC=X,DC=Y?sAMAccountName,cn,displayName?sub?(objectClass=*)
AuthLDAPBindDN CN=http-{servernam...
2015 May 11
0
Authenticating Apache Against Active Directory
...gt; Options FollowSymLinks
> AllowOverride None
> Require all granted
> Allow from all
> AuthName "AD authentication"
> AuthBasicProvider ldap
> AuthType Basic
> AuthLDAPGroupAttribute member
> AuthLDAPGroupAttributeIsDN On
> AuthLDAPURL
> ldap://dc1.domain.local/172.16.232.29:389/cn=Users,dc=domain?sAMAccountName?sub?(objectClass=*)
> AuthLDAPBindDN cn=apache-connect,cn=Users,domain
> AuthLDAPBindPassword password
> require ldap-group cn=Nagios-Admins,cn=Users,domain...
2015 May 12
0
Authenticating Apache Against Active Directory
...gt; Options FollowSymLinks
> AllowOverride None
> Require all granted
> Allow from all
> AuthName "AD authentication"
> AuthBasicProvider ldap
> AuthType Basic
> AuthLDAPGroupAttribute member
> AuthLDAPGroupAttributeIsDN On
> AuthLDAPURL
> ldap://dc1.domain.local/172.16.232.29:389/cn=Users,dc=domain?sAMAccountName?sub?(objectClass=*)
> AuthLDAPBindDN cn=apache-connect,cn=Users,domain
> AuthLDAPBindPassword password
> require ldap-group cn=Nagios-Admins,cn=Users,domain...
2016 Apr 12
1
Slow authentication on C7
...BindPassword plaintextpassword
AuthUserFile /etc/httpd/svnpasswd
AuthLDAPURL "ldaps://ldapserver1.example.com/dc=example,dc=com?uid
ldaps://ldapserver2.example.com/dc=example,dc=com?uid "
AuthBasicProvider file ldap
AuthzLDAPAuthoritative off
AuthLDAPGroupAttribute member
AuthLDAPGroupAttributeIsDN On
# READ
<Limit OPTIONS PROPFIND GET REPORT>
Require ldap-group cn=dev,cn=groups,dc=example,dc=com
Require ldap-group cn=qa,cn=groups,dc=example,dc=com
</Limit>
# WRITE
<LimitExcept OPTIONS PROPFIND GET REPORT>
Require ldap-group cn=dev,cn=groups,dc=example...
2016 Apr 12
2
Slow authentication on C7
James Hogarth wrote:
> On 12 Apr 2016 16:29, "Scott Robbins" <scottro11 at gmail.com> wrote:
>> On Tue, Apr 12, 2016 at 09:45:17AM +0200, Marcin Trendota wrote:
>> > W dniu 11.04.2016 o 20:07, Scott Robbins pisze:
<SNIP>
> After various testing I ended up going with the Apache LDAP cache module
> and doing the auth at the Apache level, not system.
>
2016 Apr 11
5
Slow authentication on C7
...ve off
AuthBasicProvider socache external
AuthExternal pwauth
AuthnCacheProvideFor external
AuthType Basic
AuthName "Subversion repository"
AuthLDAPURL ldap://ldap.our.domain/ou=Main,o=company
AuthLDAPGroupAttribute memberUid
AuthLDAPGroupAttributeIsDN off
Require ldap-group cn=programmers,ou=group,ou=main,o=company
#GroupExternal unixgroup
#Require group programmers
#Require valid-user
#AuthzSVNAccessFile /home/repos/svn.access
</Location>
</VirtualHost>
On same server we have redmine (wit...