Link to home
Start Free TrialLog in
Avatar of clynch302
clynch302Flag for United States of America

asked on

Client connecting to web application is slow. Wireshark showing TLSv1.2 Record Layer: Encrypted Alert (21)

I have users complaining the when they connect to our Kronos Time and Attendance application it is extremely slow loading the pages. I did a Wireshark capture and notice that all clients are getting a Encrypted Alert (21)

 4874      46.196898000      162.x.x.x       10.XX.XX.XX      TLSv1.2      123      Encrypted Alert
4875      46.196927000      10.XX.XX.XX      162.x.x.x       TCP      54      54303→443 [ACK] Seq=1 Ack=70 Win=255 Len=0
4876      46.197422000      162.x.x.x       10.XX.XX.XX      TCP      60      443→54303 [FIN, ACK] Seq=70 Ack=1 Win=32 Len=0
4877      46.197440000      10.XX.XX.XX      162.x.x.x       TCP      54      54303→443 [ACK] Seq=1 Ack=71 Win=255 Len=0

User generated image
This happens on all the clients connecting. The pages do end up loading but it takes 10-12 seconds. Is this an SSL issues?
ASKER CERTIFIED SOLUTION
Avatar of Zephyr ICT
Zephyr ICT
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of clynch302

ASKER

I found out that the server did not have TLS encryption enabled in the registry. Once I added

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"Enabled"=dword:00000001
"DisabledByDefault"=dword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server]
"DisabledByDefault"=dword:00000000
"Enabled"=dword:00000001

the error went away....

Thanks
Great stuff, thanks for posting the solution!