Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Godswill_Aliagh's avatar
Godswill_Aliagh
Icon for Nimbostratus rankNimbostratus
Nov 01, 2018

Redirect triffic on out of service

irule to redirect traffic to an outside website when all pool members are down

 

3 Replies

  • You can write iRule but i suggest you to add fallback details in HTTP profile.

    OR Maintenance URL

            when HTTP_REQUEST {
                if { [active_members [LB::server pool]] == 0 } { 
                HTTP::redirect "http://maintenance.host.url/dir/dir/file"
                TCP::close
                }
            }