Forum Discussion

1 Reply

  • You can do It using hamish method (LTM policy).

    You can also do it using Irule:

    when HTTP_REQUEST {
      if {[string tolower [HTTP::method]] contains "post"}{
        log local0. "Forbidden HTTP method ([HTTP::method]) attempted by [IP::client_addr]"
        reject
      }
    }
    

    With Irule you can log URI, Source IP ...

    Regards,