05-Jan-2021 04:22
Hi,
Additional INFO: First of I will represent the access as it is done from the client to the F5
CLIENT --> Cloudflare --> F5 Service
05-Jan-2021 05:06
Hi Prasad4u,
iRule:
when HTTP_REQUEST {
if { [HTTP::header exist True-Client-IP] } {
# Client --> CloudFlare --> F5
HTTP::header replace X-Forwarded-For [HTTP::header True-Client-IP]
}
else {
# Client --> F5
HTTP::header replace X-Forwarded-For [IP::client_addr]
}
}
Additional note: In this scenario, don't use source_addr persistence.
01-Mar-2021 04:46
Hi Enes Afsin,
Greetings!!
After applying this irule, The VIP stopped working.
Could you please help us here.
01-Mar-2021 15:05
Hi Prasad4u,
Can you investigate /var/log/ltm ?
Is there a log for this irule or another attached irule?