Forum Discussion

3 Replies

  • There is an iRule to extract client IP address.

        when HTTP_REQUEST {
             HTTP::header insert X-Forwarded-For [IP::remote_addr]
              }
    

    Go through f5 article K4816

    Hope it will help you..

  • Surgeon's avatar
    Surgeon
    Ret. Employee
    when HTTP_REQUEST {
       log local0.  "X-Forwarded-For: [HTTP::header X-Forwarded-For]"
    }