Hi Wesley Kalata,
This error typically means the connection reaches Azure SQL, but the SSL/TLS handshake or login phase is being interrupted. Since your IP is already allowed, the issue is usually related to encryption settings, drivers, or network restrictions.
Ask the customer to first confirm they are using the latest version of SSMS or an up-to-date SQL client, as older clients may not support the required TLS versions used by Azure SQL. They should also ensure that “Encrypt connection” is enabled and “Trust server certificate” is checked in the connection settings.
Next, have them verify that TLS 1.2 is enabled on their machine, as Azure SQL requires it. If they are on an older OS or using outdated drivers, this can cause the connection to be forcibly closed.
It’s also important to check whether a corporate firewall, proxy, or antivirus is interfering with outbound traffic on port 1433. Even if Azure firewall rules are correct, local network security can terminate the connection.
Additionally, confirm they are connecting using the correct server name format (servername.database.windows.net) and SQL authentication format (username@servername).
If the issue persists, ask them to try connecting using Azure Data Studio or sqlcmd to isolate whether it is a client-specific issue, and capture a network trace or error logs for deeper analysis.