Forum Discussion
Aabuitrago
Altostratus
May 15, 2025Load Balancing IIS Servers
Hi, I have two IIS Servers that I use to publish multiple sites. I load balance those two IIS Servers through a Big-IP. I recently add a new application on the IIS Servers and for some reason wh...
Injeyan_Kostas
Cumulonimbus
May 15, 2025Might be SNI
You can you use either different Server SSL profiles or a generic irule like
when HTTP_REQUEST
{
set serverSideSSLSNIName [ string tolower [HTTP::host] ]
}
when SERVERSSL_CLIENTHELLO_SEND
{
#https://support.f5.com/csp/article/K41600007
if { [ info exists serverSideSSLSNIName ] }
{
if { [catch { SSL::extensions insert [binary format SSScSa* 0 [expr { [set sni_length [string length $serverSideSSLSNIName]] + 5 }] [expr { $sni_length + 3 }] 0 $sni_length $serverSideSSLSNIName] } ] }
{
log local0. "ERROR: Attempting to assign server SSL - SNI : $serverSideSSLSNIName failed"
}
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects