Port 3269 is the TLS-encrypted Active Directory Global Catalog port – the secure equivalent of port 3268. Applications performing cross-domain LDAP queries over untrusted networks should use port 3269 to prevent credential interception. Requires a valid certificate on the domain controller.
Port Number
3269
Protocol
TCP
Service
Active Directory Global Catalog (SSL)
Range
IANA Registered (1024–49151)
Check GC SSL certificate expiry
openssl s_client -connect dc:3269 -showcerts 2>/dev/null | openssl x509 -noout -datesTest LDAPS GC connectivity and supported extensions
ldapsearch -H ldaps://dc:3269 -x -b '' -s base supportedControlVerify TLS version (should be 1.2 or 1.3)
echo | openssl s_client -connect dc:3269 2>/dev/null | grep Protocolldapsearch -H ldaps://gc:3269 -b 'dc=forest,dc=com' '(sAMAccountName=user)'
openssl s_client -connect dc:3269
LDAPTLS_REQCERT=allow ldapsearch -H ldaps://gc:3269Port 3269 was assigned alongside port 3268 when Active Directory was released with Windows 2000. It provides the same Global Catalog functionality as 3268 but over implicit TLS (same relationship as LDAP/389 vs LDAPS/636). Microsoft's push toward encrypted LDAP (channel binding requirements in newer Windows Server versions) makes port 3269 increasingly the required path for GC queries.
Should I always use 3269 instead of 3268?
Yes, when possible. Port 3269 encrypts the entire GC query and response. The only valid reason for 3268: legacy applications that don't support LDAPS, or environments without certificate infrastructure (no CA to issue DC certificates). Microsoft's roadmap requires LDAP signing/encryption, so applications still using 3268 will eventually break when Microsoft enforces the policy.