cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
356
Views
0
Helpful
2
Replies

LDAP Custom Filter Assistance

kylebrogers
Level 4
Level 4

I need an LDAP custom filter that filters out any users whose ipPhone field in AD is blank.  In other words, if they don't have something in that field I don't want them to sync with CUCM.  I am usuing 8.6.2aSU2.

1 Accepted Solution

Accepted Solutions

Chris Deren
Hall of Fame
Hall of Fame

This should do the job:

(&(objectclass=user)(!(objectclass=Computer))(ipPhone=*)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))

Similar threads:

https://supportforums.cisco.com/message/3551964#3551964

https://supportforums.cisco.com/message/3733967#3733967

Here is a good link:

http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/8_0_1/ccmcfg/b02ldcsflt.html#wp1075347

HTH,

Chris

View solution in original post

2 Replies 2

Chris Deren
Hall of Fame
Hall of Fame

This should do the job:

(&(objectclass=user)(!(objectclass=Computer))(ipPhone=*)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))

Similar threads:

https://supportforums.cisco.com/message/3551964#3551964

https://supportforums.cisco.com/message/3733967#3733967

Here is a good link:

http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/8_0_1/ccmcfg/b02ldcsflt.html#wp1075347

HTH,

Chris

Thank you.  I will give that a shot and let you know how it goes.