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

1 Reply

  • Use this iRule:

    when HTTP_REQUEST {
    
        Check if requested host equals to testing.com
       if {[string tolower [HTTP::host]] eq "testing.com"}{
    
           Replace the host header value with testing.com:5060
          HTTP::header replace Host "testing.com:5060
       }
    }