Openldap
在 openldap 中啟用匿名綁定
我已成功設置 ldap 伺服器,一切正常。但是,我無法使用“匿名”綁定訪問伺服器,根據每個Google搜尋它應該是。
當我執行時;
# ldapsearch -x -H ldap://localhost -b dc=example,dc=com
輸出說;
# result: 50 Insufficient access
注意:唯一存在的 ACL 是;
olcAccess: {0}to * by self write by anonymous auth by * none
這是否證明伺服器不是編譯器或配置為使用匿名綁定?如果是這樣,啟用它的最佳方法是什麼?
ServerFault 有人回答了這個問題。 https://serverfault.com/questions/748758/enable-anonymous-bind-in-openldap/748904#748904
問題是配置的 ACL。**
by * none
**阻止大多數匿名操作的行。一旦擺脫該伺服器允許執行匿名ldapsearch
操作,預設情況下證明 openldap 支持匿名綁定。