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 的初学者。谁能告诉我这个 LDAP 连接字符串中的域名是什么:
connectionString="LDAP://AD/dc=Demo, dc=Local"
不管是AD还是Demo还是Local?
AD
Demo
Local
dc意思是“域组件”,按照从大到小的顺序读取,所以DNS域名是“demo.local”。
dc
“AD”是要连接的 LDAP 服务器的主机名。
其他 LDAP 路径组件喜欢ou并cn指代目录层次结构中的容器和对象,因此ldap://domainController/cn=Foobar,ou=Users,dc=domain,dc=local指的是一个名为“”的对象,位于一个名为“ Foobar”的容器Users内,位于域名“ domain.local”的目录中
ou
cn
ldap://domainController/cn=Foobar,ou=Users,dc=domain,dc=local
Foobar
Users
domain.local