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.
我有以下过滤器,并希望将其扩展为包含另一个 cn 组:
$filter ="(&(cn=PATH*)(cn=*2013*))";
所以它包括&(cn=PATH*)(cn=*2013*)AND &(cn=MICR*)(cn=*2013*)
&(cn=PATH*)(cn=*2013*)
&(cn=MICR*)(cn=*2013*)
我该怎么做?
我很确定语法如下:
(&(&(cn=PATH*)(cn=*2013*))(&(cn=MICR*)(cn=*2013*)))
这种格式对于 OR 语句会更有用,这意味着既可以是第一个,也可以是第二个:
(|(&(cn=PATH*)(cn=*2013*))(&(cn=MICR*)(cn=*2013*)))
或者,如果您只想匹配所有四个:
(&(cn=PATH*)(cn=*2013*)(cn=MICR*)(cn=*2013*))