Forum Discussion
Moonotech
Nimbostratus
Sep 05, 2024Request URL and Referel http header
Hello Everyone, Kindly help with how i can change the Request URL and Referrel header field. And also i want to be able to send the 2 field to the logs. Many Thanks. Regards,
Frank_J_104756
Sep 27, 2007Historic F5 Account
it's not removing the cookie though
when HTTP_REQUEST {
set CookiePool [findstr [HTTP::cookie names] "BIGipServer" 11 " "]
if { $CookiePool !=""} {
if {[active_members $CookiePool] > 0} {
pool $CookiePool
log local0. "sending [IP::client_addr] coming in on [IP::local_addr] to pool $CookiePool" }
else {
pool [LB::server pool]
HTTP::cookie remove "BIGipServer$CookiePool"
log local0. "removing cookie BIGipServer$CookiePool. Remaining cookies are [HTTP::cookie names]"
log local0. "sending [IP::client_addr] coming in on [IP::local_addr] to pool [LB::server pool] because original pool $CookiePool is down"
}
}
}
- Nov 13, 2022
Hi davidy2001 ,
If this license was working with you before , you may booted up from another bootlocation other than the first used one.
-at all , try to Activate your license manually not Automatically , maybe you have issue with internet connection with F5.
Follow the steps on this Video but with manually method :
https://www.youtube.com/watch?v=osAJesgNdJc&t=103s
or
Follow this KB :
https://support.f5.com/csp/article/K7752
Regards - davidy2001Nov 14, 2022
Cirrus
Mohamed_Ahmed_Kansoh Right, thanks