Exam 1Y0-241 All QuestionsBrowse all questions from this exam
Question 101

Scenario: A Citrix Administrator configured the rewrite policies below:

bind lb vServer VIP1_http -policyName POL_14 -priority 120 -gotoPriorityExpression END -type REQUEST bind lb vServer VIP1_http -policyName POL_12 -priority 90 -gotoPriorityExpression NEXT -type REQUEST bind lb vServer VIP1_http -policyName POL_15 -priority 100 -gotoPriorityExpression END -type REQUEST bind lb vServer VIP1_http -policyName POL_13 -priority 101 -gotoPriorityExpression NEXT -type REQUEST

Which policy will be evaluated last, considering POL_12 is hit first?

    Correct Answer: C

    When considering the priorities and the -gotoPriorityExpression values, we can determine the evaluation order. POL_12 is hit first, with a priority of 90 and a -gotoPriorityExpression of NEXT, meaning the next policy to be evaluated will be the one with the next highest priority number. Following POL_12, the next policy with the highest priority is POL_15, with a priority of 100 and a -gotoPriorityExpression of END, concluding its evaluation here. Therefore, it does not proceed to any other policy. However, since POL_15 gets evaluated after POL_12, chronologically speaking, the policy with the highest priority (POL_14) among the remaining would be POL_14 with priority 120. Hence, POL_14 will be evaluated last.

Discussion
mobi22Option: D

D Pol_15 is te last because the binding ends with: -gotoPriorityExpression END

ZAK0707Option: C

In the Citrix ADC operating system, policy priorities work in reverse order - the higher the number, the lower the priority. over here the order is Pol_12 = 90 Pol_15 = 100 Pol_13 = 101 Pol_14 = 120

Steve122Option: D

D bind lb vServer VIP1_http -policyName POL_12 -priority 90 -gotoPriorityExpression NEXT -type REQUEST bind lb vServer VIP1_http -policyName POL_15 -priority 100 -gotoPriorityExpression END -type REQUEST ---STOP--- bind lb vServer VIP1_http -policyName POL_13 -priority 101 -gotoPriorityExpression NEXT -type REQUEST bind lb vServer VIP1_http -policyName POL_14 -priority 120 -gotoPriorityExpression END -type REQUEST