Forum Discussion
lttarvina
Nov 16, 2023Cirrus
LB behavior for backend IP connections
Hi team, Please help me confirm if the load balancer will support F5 VIP at the same time. Much better if you could provide a supporting Knowledge Base article for this. Thanks a lot.
Nov 16, 2023
From the diagram you provided, it looks like you want to use 'layered virtual servers' (i.e. where traffic from one virtual server gets forwarded to another virtual server). You can do this based on the HTTP host header of the client request (assuming that SSL is terminated on the BIG-IP) using an iRule e.g:
when HTTP_REQUEST {
set HOST [string tolower [HTTP::host]]
switch $HOST {
"<FQDN 1>" { virtual <VS NAME> }
"<FQDN 2>" { virtual <VS NAME> }
"<FQDN 3>" { virtual <VS NAME> }
default { HTTP::respond 200 content "Invalid Hostname" }
}
}
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