rewrite-action¶
The following operations can be performed on "rewrite-action":
add| rm| show| set| rename| unset|
add rewrite action¶
Creates a rewrite action, which specifies exactly what modifications to make to a request or response before forwarding that request or response to the protected web server or to the user. In addition to user-defined actions, the rewrite feature has the following three built-in actions: * NOREWRITE - Sends the request or response to the user without rewriting it. * RESET - Resets the connection and notifies the user's browser, so that the user can resend the request. * DROP - Drops the connection without sending a response to the user. One of the following three flow types is implicitly associated with every action: * Request - Action applies to the request. * Response - Action applies to the response. * Neutral - Action applies to both requests and responses.
Synopsis¶
add rewrite action
Arguments¶
name Name for the user-defined rewrite action. Must begin with a letter, number, or the underscore character (_), and must contain only letters, numbers, and the hyphen (-), period (.) hash (#), space ( ), at (@), equals (=), colon (:), and underscore characters. Can be changed after the rewrite policy is added.
The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks (for example, "my rewrite action" or 'my rewrite action').
type
Type of user-defined rewrite action. The information that you provide for, and the effect of, each type are as follows::
* REPLACE
Possible values: noop, delete, insert_http_header, delete_http_header, corrupt_http_header, insert_before, insert_after, replace, replace_http_res, delete_all, replace_all, insert_before_all, insert_after_all, clientless_vpn_encode, clientless_vpn_encode_all, clientless_vpn_decode, clientless_vpn_decode_all, insert_sip_header, delete_sip_header, corrupt_sip_header, replace_sip_res, replace_diameter_header_field, replace_dns_header_field, replace_dns_answer_section
target Expression that specifies which part of the request or response to rewrite.
stringBuilderExpr Expression that specifies the content to insert into the request or response at the specified location, or that replaces the specified string.
pattern DEPRECATED in favor of -search: Pattern that is used to match multiple strings in the request or response. The pattern may be a string literal (without quotes) or a PCRE-format regular expression with a delimiter that consists of any printable ASCII non-alphanumeric character except for the underscore (_) and space ( ) that is not otherwise used in the expression. Example: re~https?://|HTTPS?://~ The preceding regular expression can use the tilde (~) as the delimiter because that character does not appear in the regular expression itself. Used in the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types.
search
Search facility that is used to match multiple strings in the request or response. Used in the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. The following search types are supported:
* Text ("text(string)") - A literal string. Example: -search text("hello")
* Regular expression ("regex(re
Note: for all these the TARGET prefix can be used in the replacement expression to specify the text that was selected by the -search parameter, optionally adjusted by the -refineSearch parameter. Example: TARGET.BEFORE_STR(",")
refineSearch Specify additional criteria to refine the results of the search. Always starts with the "extend(m,n)" operation, where 'm' specifies number of bytes to the left of selected data and 'n' specifies number of bytes to the right of selected data to extend the selected area. You can use refineSearch only on body expressions, and for the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. Example: -refineSearch 'EXTEND(10, 20).REGEX_SELECT(re~0x[0-9a-zA-Z]+~).
comment Comment. Can be used to preserve information about this rewrite action.
Example¶
i)add rewrite action act_insert INSERT_HTTP_HEADER change_req "\"no change\"" .This Adds to http header will add the header change_req: no change. ii)add rewrite action act_replace REPLACE "HTTP.REQ.URL.PREFIX(1)" "HTTP.REQ.URL.PREFIX(1)+\"citrix/\"" .If HTTP.REQ.URL.PREFIX(1) is / the result would be /citrix/ iii)add rewrite action act_before INSERT_BEFORE "HTTP.REQ.HEADER(\"host\").VALUE(0)" "\"india\"" .If HTTP.REQ.HEADER(\"host\").VALUE(0) is netscaler.com the result would be indianetscaler.com iv)add rewrite action act_after INSERT_AFTER "HTTP.REQ.HEADER(\"host\").TYPECAST_LIST_T('.').GET(0)" "\"-india\"" .If HTTP.REQ.HEADER(\"host\").VALUE(0) is support.netscaler.com then the result would be support-india.netscaler.com v)add rewrite action act_delete DELETE "HTTP.REQ.HEADER(\"host\").VALUE(0)" will leave the Host header looking like "HOST: ". vi)add rewrite action act_delete_header DELETE_HTTP_HEADER Host will delete the Host header. If Host header occurs more than once all occurrence of the header will be deleted. vii)add rewrite action act_corrupt_header CORRUPT_HTTP_HEADER Host will corrupt the Host header. If Host header occurs more than once all occurrence of the header will be corrupted.
rm rewrite action¶
Removes a rewrite action.
Synopsis¶
rm rewrite action
Arguments¶
name Name of the rewrite action to remove.
Example¶
rm rewrite action act_before
show rewrite action¶
Displays the current settings for the specified rewrite action. If no rewrite action name is provided, displays a list of all rewrite actions currently configured on the Citrix ADC.
Synopsis¶
show rewrite action [
Arguments¶
name Name of the rewrite action.
Output¶
stateflag type Type of rewrite action. It can be: (delete|replace|insert_http_header|insert_before|insert_after|replace_http_res).
target Expression specifying which part of HTTP header needs to be rewritten.
stringBuilderExpr Expression specifying the value of rewritten HTTP header.
pattern Pattern used for insert_before_all, insert_after_all, replace_all, delete_all action types.
search
Search facility that is used to match multiple strings in the request or response. Used in the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. The following search types are supported:
* Text ("text(string)") - A literal string. Example: -search text("hello")
* Regular expression ("regex(re
Note: for all these the TARGET prefix can be used in the replacement expression to specify the text that was selected by the -search parameter, optionally adjusted by the -refineSearch parameter. Example: TARGET.BEFORE_STR(",")
bypassSafetyCheck The safety check to allow unsafe expressions.
refineSearch Specify additional criteria to refine the results of the search. Always starts with the "extend(m,n)" operation, where 'm' specifies number of bytes to the left of selected data and 'n' specifies number of bytes to the right of selected data to extend the selected area. You can use refineSearch only on body expressions, and for the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. Example: -refineSearch 'EXTEND(10, 20).REGEX_SELECT(re~0x[0-9a-zA-Z]+~).
hits The number of times the action has been taken.
undefHits The number of times the action resulted in UNDEF.
referenceCount The number of references to the action.
description Description of the action
flags isDefault A value of true is returned if it is a default rewriteaction.
comment Comment. Can be used to preserve information about this rewrite action.
builtin Flag to determine whether rewrite action is built-in or not
feature The feature to be checked while applying this config
devno count
Example¶
- show rewrite action
- show rewrite action act_insert
set rewrite action¶
Modifies the specified parameters of a rewrite action.
Synopsis¶
set rewrite action
Arguments¶
name Name of the rewrite action to modify.
target Expression that specifies which part of the connection to rewrite.
stringBuilderExpr Expression that specifies the content to insert into the request or response at the specified location, or that replaces the specified string.
pattern DEPRECATED in favor of -search: Pattern that is used to match multiple strings in the request or response. The pattern may be a string literal (without quotes) or a PCRE-format regular expression with a delimiter that consists of any printable ASCII non-alphanumeric character except for the underscore (_) and space ( ) that is not otherwise used in the expression. Example: re~https?://|HTTPS?://~ The preceding regular expression can use the tilde (~) as the delimiter because that character does not appear in the regular expression itself. Used in the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types.
search
Search facility that is used to match multiple strings in the request or response. Used in the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. The following search types are supported:
* Text ("text(string)") - A literal string. Example: -search text("hello")
* Regular expression ("regex(re
Note: for all these the TARGET prefix can be used in the replacement expression to specify the text that was selected by the -search parameter, optionally adjusted by the -refineSearch parameter. Example: TARGET.BEFORE_STR(",")
refineSearch Specify additional criteria to refine the results of the search. Always starts with the "extend(m,n)" operation, where 'm' specifies number of bytes to the left of selected data and 'n' specifies number of bytes to the right of selected data to extend the selected area. You can use refineSearch only on body expressions, and for the INSERT_BEFORE_ALL, INSERT_AFTER_ALL, REPLACE_ALL, and DELETE_ALL action types. Example: -refineSearch 'EXTEND(10, 20).REGEX_SELECT(re~0x[0-9a-zA-Z]+~).
comment Comment. Can be used to preserve information about this rewrite action.
Example¶
set rewrite action rwact1 -target "HTTP.REQ.HEADER(\"MyHdr\")" -stringBuilderExpr "HTTP.REQ.URL.MARK_SAFE"
rename rewrite action¶
Renames a rewrite action.
Synopsis¶
rename rewrite action
Arguments¶
name Existing name of the rewrite action.
newName New name for the rewrite action. Must begin with a letter, number, or the underscore character (_), and must contain only letters, numbers, and the hyphen (-), period (.) hash (#), space ( ), at (@), equals (=), colon (:), and underscore characters. Can be changed after the rewrite policy is added.
The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks (for example, "my rewrite action" or 'my rewrite action').
Example¶
rename rewrite action oldname newname
unset rewrite action¶
Use this command to remove rewrite action settings.Refer to the set rewrite action command for meanings of the arguments.
Synopsis¶
unset rewrite action