So you must force TLS now.
This is done by adding this code at the beginning :
# Force TLS [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
# Force TLS [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
© WFAGuy.com - WFA & PowerShell Blog 2016 . Powered by Blogger . Blogger Templates
This setting of the client security protocol to use TLS12 is going to run into a problem with Datacenters having mixed DataONTAP versions. TLS12 support is not available on older ONTAP versions like 8.3 or below.
ReplyDeleteThere is no reason for WFA to restrict any security protocol. Do the below and it works for all ONTAP versions.
[Net.ServicePointManager]::SecurityProtocol = 'Tls, Tls11, Tls12, Ssl3'