Forum Discussion
woliver_163458
May 06, 2015Altocumulus
No traffic going to pool, but works with different name
I'm seeing an odd issue on our LTM where traffic will not flow to one of my pools. It's inside an irule, but the issue isn't with the rule itself. In a bit of desperation, I created a new pool whic...
- Mar 24, 2016
Just in case anyone else runs into the same issue, the problem wound up being we had pools in different partitions/route domains with the same name, i.e. 'DP_REST_FIREWALL_Servers', which confuses the device if the partition is not explicitly called out. So the fix was just a matter of updating the irule to read
pool /D04TS/DP_REST_FIREWALL_Servers
instead of
pool DP_REST_FIREWALL_Servers
woliver_163458
May 07, 2015Altocumulus
irule below
when HTTP_REQUEST {
switch -glob [HTTP::URI] {
"/BackOffice/*" -
"/WebClient/*" {
pool BKO_SSL_Servers
set doSSL 1
}
"/cdds/wfs-receiver*" -
"/cdds/local-receiver*" {
pool RTM_SSL_Servers
set doSSL 1
}
"/SchemaRepository*" {
pool SOA_HTTP_Servers
set doSSL 0
}
"/Services/*" -
"/QueryBroker" {
pool DP_REST_FIREWALL_Servers
set doSSL 2
}
default {
pool DP_SSL_Servers
set doSSL 2
}
}
}
when SERVER_CONNECTED {
if {$doSSL == 0} {
SSL::disable serverside
}
elsif { $doSSL == 1} {
SSL::enable serverside
SSL::profile SSL_1way_Server_profile
}
elsif { $doSSL == 2} {
SSL::enable serverside
SSL::profile SSL_2way_Server_profile
}
}
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