1Y0-341 Exam QuestionsBrowse all questions from this exam

1Y0-341 Exam - Question 58


Scenario: A Citrix Engineer needs to ensure that the flow of traffic to a web application does NOT overwhelm the server. After thorough testing, the engineer determines that the application can handle a maximum of 3,000 requests per minute. The engineer builds a limit identifier, rl_maxrequests, to enforce this limitation.

Which advanced expression can the engineer write in the Responder policy to invoke rate limiting?

Show Answer
Correct Answer: A

To invoke rate limiting, the Citrix Engineer should use the `SYS.CHECK_LIMIT(“rl_maxrequests”)` expression in the Responder policy. This ensures that the custom limit identifier 'rl_maxrequests', which is configured to limit the application to 3,000 requests per minute, is enforced. The other options are either checking for specific conditions or comparisons that are not relevant to enforcing the rate limit directly.

Discussion

3 comments
Sign in to comment
RVR
Jun 17, 2023

https://docs.netscaler.com/en-us/citrix-adc/current-release/appexpert/rate-limiting/configuring-binding-traffic-rate-policy1.html

robholgateOption: A
Aug 9, 2023

sys.check_limit(<limit_identifier>)

thedelphOption: A
Nov 11, 2023

SYS.CHECK_LIMIT(“rl_maxrequests”)