For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

vigyu's avatar
vigyu
Icon for Altocumulus rankAltocumulus
Apr 23, 2020
Solved

LTM - X-Forwarded-for - Policy - Route domain id

Hello!

 

We have a virtual server with policy that add some extra headers to the http head. For exaple X-forwared-for. The http header is checked in the pool members and we see the route domain id after the X-forwared-for client IP.

How can we hide the route domain id in the F5?

 

Policy that assign to the virtual server:

ltm policy /PART_1/LTMPOL-HTTP-HEADER-INSERT {

  last-modified 2020-04-02:10:18:52

  requires { http }

  rules {

    HTTP-HEADER-INSERT {

      actions {

        0 {

          http-header

          insert

          name X-Real-IP

          value tcl:[IP::client_addr]

        }

        1 {

          http-header

          insert

          name X-Forwarded-For

          value tcl:[IP::client_addr]

        }

        2 {

          http-header

          insert

          name X-Forwarded-Proto

          value https

        }

      }

    }

  }

  strategy /Common/first-match

}

 

Regards,

Gyuri