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
When configuring Bindings in IIS, there are multiple options in addition to SNI, e.g. "Disable HTTP/2". When this is configured, together with SNI, the value for sslFlags in applicationHost.config is 5.
A value of "0" specifies that the secure connection be made using an IP/Port combination. Only one certificate can be bound to a combination of IP address and the port.
A value of "1" specifies that the secure connection be made using the port number and the host name obtained by using Server Name Indication (SNI).
A value of "2" specifies that the secure connection be made using the centralized SSL certificate store without requiring a Server Name Indicator.
A value of "3" specifies that the secure connection be made using the centralized SSL certificate store while requiring Server Name Indicator
A value of "4" specifies that HTTP/2 should be disabled
A value of "8" specifies that OCSP Stapling should be disabled
A value of "16" specifies that QUIC should be disabled
A value of "32" specifies that TLS 1.3 over TCP should be disabled
A value of "64" specifies that Legacy TLS should be disabled
In addition these can be combined by adding them together to select multiple options, e.g when disabling TLS 1.3 and HTTP/2 the value would be 36.
SUMMARY
When configuring Bindings in IIS, there are multiple options in addition to SNI, e.g. "Disable HTTP/2". When this is configured, together with SNI, the value for sslFlags in applicationHost.config is 5.
Current behavior of win_iis_webbinding is to only accept values in the range 0..3
In Microsoft documentation (https://learn.microsoft.com/en-us/iis/configuration/system.applicationhost/sites/site/bindings/binding) only values 0..3 are mentioned. (Values 0..3 below is an excerpt from MS doc). However, there are several other values in use by IIS
For other values:
In addition these can be combined by adding them together to select multiple options, e.g when disabling TLS 1.3 and HTTP/2 the value would be 36.
ISSUE TYPE
COMPONENT NAME
win_iis_webbinding
ANSIBLE VERSION
COLLECTION VERSION
CONFIGURATION
OS / ENVIRONMENT
N/A
STEPS TO REPRODUCE
EXPECTED RESULTS
SNI required and HTTP/2 should be disabled
ACTUAL RESULTS
The text was updated successfully, but these errors were encountered: