1Y0-241 Exam QuestionsBrowse all questions from this exam

1Y0-241 Exam - Question 34


A Citrix Administrator needs to configure a rate-limiting policy setting DNS requests to a threshold of 1,000 per second.

Which command does the administrator need to run to correctly configure this policy?

Show Answer
Correct Answer: BD

To configure a rate-limiting policy setting DNS requests to a threshold of 1,000 per second, the administrator needs to define the system-level limit and the specific HTTP request limit. The command SYS.CHECK.LIMIT(<limit_identifier>) is used to define a system-level limit, while HTTP.REQ.LIMIT(<limit_identifier>) sets a limit on the rate of HTTP requests. Combining these two expressions using the '||' operator properly applies the rate limit based on both criteria.

Discussion

5 comments
Sign in to comment
donlinkOption: B
Jun 8, 2022

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

TheconquerorOption: B
Sep 22, 2022

Correct Answer: B https://discussions.citrix.com/topic/398863-netscaler-rate-limiting-policy/

MarouCitrixOption: D
May 19, 2023

The command combines two policy expressions to achieve the desired rate-limiting behavior. Here's a breakdown of the command components: SYS.CHECK.LIMIT(<limit_identifier>): This expression is used to define a system-level limit based on the specified limit identifier. It sets a limit on the overall system resources that can be consumed by the policy. HTTP.REQ.LIMIT(<limit_identifier>): This expression is used to set a limit on the rate of HTTP requests, in this case, DNS requests. The <limit_identifier> is a placeholder that should be replaced with an appropriate identifier specific to the policy. By combining these expressions using the "||" operator, the policy is configured to apply the rate limit based on both the system-level limit and the rate of DNS requests.

JesusOption: D
Jun 12, 2023

Answer D: https://docs.citrix.com/en-us/citrix-adc/current-release/appexpert/rate-limiting/configuring-binding-traffic-rate-policy1.html "The policy expression must be a compound expression that contains at least two components: - An expression that identifies traffic to which the rate limit identifier is applied http.req.url.contains("my_aspx.aspx"). - An expression that identifies a rate limit identifier sys.check_limit(“my_limit_identifier”)

Steve122Option: B
Jan 20, 2024

B conf order: 1. Stream Selector: entity for which you want to throttle access 2. Limit Identifier: checks if the amount of traffic exceeds a specified value 3. binding a traffic rate policy: sys.check_limit(<limit_identifier>)