Forum Discussion

Rockers_319329's avatar
Rockers_319329
Icon for Nimbostratus rankNimbostratus
May 29, 2018

domain 1 to domain 2 re direct

I have a domain (domain 1) which is host to some ISP and from there thee ISP forward that to my domain 2 which is under F5 WAF. Is there any problem or WAF blocking the forwarding. How can i check this from my WAF.

 

1 Reply

  • Hi,

    First of what is your problem. do you receive traffic on your equipment?

    You can first from asm log all request and check if you receive request from client in asm logs event.

    You can also insert an irule in order to trace http traffic:

    when HTTP_REQUEST {
       set LogString " Client [IP::client_addr]:[TCP::client_port] -> [HTTP::host][HTTP::uri]"
       log local0. " ============================================="
       log local0. " ==============REQUEST========================"
       log local0. " ============================================="
       log local0. " $LogString (request)"
       foreach aHeader [HTTP::header names] {
          log local0. " $aHeader: [HTTP::header value $aHeader]"
       }
    }
    when HTTP_REQUEST_RELEASE {
       set LogString " Client [IP::client_addr]:[TCP::client_port] -> [HTTP::host][HTTP::uri]"
       log local0. " ============================================="
       log local0. " ==============REQUEST========================"
       log local0. " ============================================="
       log local0. " $LogString (request)"
       foreach aHeader [HTTP::header names] {
          log local0. " $aHeader: [HTTP::header value $aHeader]"
       }
    }
    when HTTP_RESPONSE {
       log local0. " ============================================="
       log local0. " ==============RESPONSE======================="
       log local0. " ============================================="
       log local0. " $LogString (response) - status: [HTTP::status]"
       foreach aHeader [HTTP::header names] {
          log local0. " $aHeader: [HTTP::header value $aHeader]"
       }
    }