You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading F5 to version 14.1.3.x, from 13.1.3.x this task stopped working.
After some debugging i found that it was during New-F5Session it fails.
The TMError object returned:
System.Management.Automation.CmdletInvocationException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.TlsStream.EndWrite(IAsyncResult asyncResult)
By adding this line: [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls11
It works again.
Could you update the Task with the TLS 1.1 support?
The text was updated successfully, but these errors were encountered:
After upgrading F5 to version 14.1.3.x, from 13.1.3.x this task stopped working.
After some debugging i found that it was during New-F5Session it fails.
The TMError object returned:
By adding this line:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls11
It works again.
Could you update the Task with the TLS 1.1 support?
The text was updated successfully, but these errors were encountered: