Hello Michael Johnson,
The LDAP_STRONG_AUTH_REQUIRED error shows up because your domain controllers are enforcing LDAP signing and Channel Binding Tokens (CBT). Older devices that don’t have updated TLS support can’t meet those requirements, and unfortunately Active Directory doesn’t allow exceptions for individual accounts or devices. The safest way to handle this is to start by auditing which connections are failing. Turn on Directory Service diagnostic logging by setting 16 LDAP Interface Events to 2 under HKLM\SYSTEM\CurrentControlSet\Services\NTDS\Diagnostics, then watch for Event IDs 2886–2889 in the Directory Service log. Those entries will tell you exactly which client IPs and accounts are trying insecure simple binds.
From there, the long‑term fix is to update firmware or move those devices to LDAPS on port 636. If you need a temporary workaround, you can set LdapEnforceChannelBinding to 1 (if supported) under HKLM\SYSTEM\CurrentControlSet\Services\NTDS\Parameters on specific domain controllers, or route legacy equipment through an internal proxy. This way you can keep your domain secure while still giving older systems a path forward until they’re updated.
Tracy Le.