Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to see http header forwarded to another url ?

jeffrey1984
Cirrus
Cirrus

The request comes into our Apache web server which is configured for Shibboleth and is sent to SSO which validates the credentials and does a POST back to Apache web server which then forwards the request onto another url. Is there a way in F5 LTM to see the HTTP header being forwarded to the new url specially the euid of the user? Thanks in advance

1 ACCEPTED SOLUTION

Andrew-F5
F5 Employee
F5 Employee

Assuming the traffic is either (a) not encrypted or (b) the F5 is decrypting it then yes, using an HTTP profile and iRule or Local Traffic Policy.

 

See the iRule HTTP::header CloudDocs page for more details.

when HTTP_REQUEST { if { [HTTP::header exists "myHeader"] } { log local0. "The value of myHeader is [HTTP::header value myHeader]" } }

 

View solution in original post

2 REPLIES 2

Andrew-F5
F5 Employee
F5 Employee

Assuming the traffic is either (a) not encrypted or (b) the F5 is decrypting it then yes, using an HTTP profile and iRule or Local Traffic Policy.

 

See the iRule HTTP::header CloudDocs page for more details.

when HTTP_REQUEST { if { [HTTP::header exists "myHeader"] } { log local0. "The value of myHeader is [HTTP::header value myHeader]" } }

 

Thank you Sir. Appreciate you prompt response .