使用OpenLDAP 操作 Windows Active Directory

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

《节选自 Netkiller LDAP 手札》

第 4 章 Active Directory

通过ldapsearch查询Windows Active Directory 是一件很有趣事情。

列出所有员工姓名

ldapsearch -x -H ldap://192.168.19.238 -D [email protected] -w 12345678 -b 'OU=china,DC=company,DC=com' '(&(objectCategory=person)(objectClass=user)(company=*)(mail=*))'|grep '^name::' | awk -F ' ' '{print $2}' |base64 --decode | sed 's/)/)\r\n/g'

统计员工数目

ldapsearch -x -H ldap://192.168.19.238 -D [email protected] -w 12345678 -b 'OU=china,DC=company,DC=com' '(&(objectCategory=person)(objectClass=user)(company=*)(mail=*))'|grep '^name::' | wc -l

制作通讯录,或导出邮件列表

ldapsearch -x -H ldap://192.168.19.238 -D [email protected] -w 12345678 -b 'OU=china,DC=company,DC=com' '(&(objectCategory=person)(objectClass=user)(company=*)(mail=*))'|grep ^mail:|awk -F ' ' '{print $2}'

列出 name mail mobile telephoneNumber

ldapsearch -x -H ldap://192.168.19.238 -D [email protected] -w 12345678 -b 'OU=china,DC=company,DC=com' '(&(objectCategory=person)(objectClass=user)(name=*)(mail=*))' name mail mobile telephoneNumber

 

延伸阅读

Email 服务器之 SPF 记录

MySQL 转换 latin1 到 UTF-8

金融交易系统设计思路

PHP高级编程之守护进程

压力测试中存在的问题

 

长按下面二维码,关注我的公众号,每天推推送原创技术文章。

使用OpenLDAP 操作 Windows Active Directory_第1张图片

转载于:https://my.oschina.net/neochen/blog/719389

你可能感兴趣的:(使用OpenLDAP 操作 Windows Active Directory)