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

Forum Discussion

phipse's avatar
phipse
Icon for Altostratus rankAltostratus
7 years ago
Solved

LTM iRule Reverse Proxy redirect

Hi Guys, Sorry for the repeat post in advance. I'm trying to configure a reverse proxy (RP) using an iRule, but I can not get it to work. I'm a network engineer by trade, but I love learning this...
  • jaikumar_f5's avatar
    7 years ago

    Phipse,

    Have you tried using string map,

    when HTTP_REQUEST {
       if { [string tolower [HTTP::uri]] starts_with "/ucit" } {
          HTTP::uri [string map {"/ucit/" "/services/"} [HTTP::uri]]
          pool pool_Node4RP_Reg
       } else {
       pool pool_RTS_4400
       }
    }