15-Nov-2023 18:02
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.
15-Nov-2023 21:09
@lttarvina F5 does support using the same destination IP as long as something else is different with the destination. As long as one of the following is different you can use the same IP for as many of those variations as you can configure.
source IP
destination IP
destination port
protocol
The following is the supporting document and you can search for "About virtual addresses" to find the appropriate section.
16-Nov-2023 00:12
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" }
}
}