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

Scenario: A Citrix Administrator executed the following commands on the Citrix ADC:

> add policy dataset Admin_group ipv4

> bind policy dataset Admin_group 192.168.149.10 -index 11

> bind policy dataset Admin_group 192.168.149.39 -index 12

> bind policy dataset Admin_group 192.168.149.49 -index 13

> add responder policy POL_1 `!(CLIENT.IP.SRC.TYPECAST_TEXT_T.CONTAINS_ANY(\`Admin_group\`))` RESET

> bind lb vServer lb_vsrv_www -policyName POL_1 -priority 100 -gotoPriorityExpression END -type REQUEST

What will be the effect of these commands?

    Correct Answer: A

    The commands are adding IP addresses to a dataset called Admin_group and then creating a responder policy POL_1 that resets any connection where the client's source IP address does not contain any of the IPs in Admin_group. This policy is then bound to the virtual server lb_vsrv_www. Therefore, only users with a source IP address of 192.168.149.10, 192.168.149.39, or 192.168.149.49 will be allowed to connect to the virtual server lb_vsrv_www; all other connections will be reset.

Discussion
ImMaaxOption: A

A is true because of ! = not “!( in the expression

foreigner78Option: A

A is correct, the ! on the expression means that any user connection that is NOT a part of the admin group will be reset.