request_header_filter
> Documentation > Docs > INFINI Gateway > References > Online Filter > request_header_filter

request_header_filter #

Description #

The request_header_filter is used to filter traffic based on request header information.

Configuration Example #

A simple example is as follows:

flow:
  - name: test
    filter:
      - request_header_filter:
          include:
          - TRACE: true

The above example shows that requests are allowed to pass through only when the headers of the requests contain TRACE: true.

curl 192.168.3.4:8000 -v -H 'TRACE: true'

Parameter Description #

NameTypeDescription
excludearrayHeader information used to refuse to allow requests to pass through
includearrayHeader information used to allow requests to pass through
actionstringProcessing action after filtering conditions are met. The value can be set to deny or redirect_flow and the default value is deny.
statusintStatus code returned after the user-defined mode is matched
messagestringMessage text returned in user-defined deny mode
flowstringID of the flow executed in user-defined redirect_flow mode
Note: If the include condition is met, requests are allowed to pass through only when at least one response code in include is met. If only the exclude condition is met, any request that does not meet exclude is allowed to pass through.