Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LDAP
如何使用 bash 从 LDAP 服务器获取域用户的用户电子邮件属性?
我想我应该使用 ldapsearch 命令。
我有以下有关 ldap 服务器的信息:
服务器名称:server.url
服务器端口号:portnum
搜索库:dc=prefix1,dc=db
账户名:域\用户名
密码:domain_password
ldapsearch -h Hostname -p port# -D dc=prefix1,dc=db -b cn=username,cn=User,dc=prefix1,dc=db "sAMAccountName=YourUsersName" mail
您将需要帐户名称的真实 DN,您可以使用与上述相同的方法进行搜索,然后从结果中获取 DN。