Linux - ServerThis forum is for the discussion of Linux Software used in a server related context.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
How can i set access control policy in smbopenldap's slapd.conf file
so that a user login using myphpldapadim only can see his own property, not others. I have tried the following in slapd.conf file :-
access to dn.base="cn=Manager,dc=mydomain,dc=com"
by self write
by self read
when using the above parameter, user login using phpmyldapadmin
but can see others users property also(unable to write others).
it is possible that he can only read and write his own not to others?
I have an ACL in my slapd.conf that looks like this:
Code:
# The admin dn has full write access, everyone else
# can read everything.
access to *
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by * read
Changing the line "by * read" to "by * none" should help. You may be better of just restricting specific attributes instead, however, or else making sure that you've got some account that can be used for read-only access to everything.
For restricting specific attributes, look at your access list for the password field:
Code:
access to attrs=userPassword,shadowLastChange
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by anonymous auth
by self write
by * none
And for a read-only user, it should look something like this:
Code:
# The admin dn has full write access, everyone else
# can read everything.
access to *
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by dn="cn=readonly,dc=dl,dc=example,dc=com" read
by * none
I have an ACL in my slapd.conf that looks like this:
Code:
# The admin dn has full write access, everyone else
# can read everything.
access to *
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by * read
Changing the line "by * read" to "by * none" should help. You may be better of just restricting specific attributes instead, however, or else making sure that you've got some account that can be used for read-only access to everything.
For restricting specific attributes, look at your access list for the password field:
Code:
access to attrs=userPassword,shadowLastChange
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by anonymous auth
by self write
by * none
And for a read-only user, it should look something like this:
Code:
# The admin dn has full write access, everyone else
# can read everything.
access to *
by dn="cn=admin,dc=dl,dc=example,dc=com" write
by dn="cn=readonly,dc=dl,dc=example,dc=com" read
by * none
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.