1Y0-204 Exam QuestionsBrowse all questions from this exam

1Y0-204 Exam - Question 107


Scenario: A Citrix Administrator suspects an attack on a load balancing virtual server. The administrator needs to restrict access to the load balancing virtual server (192.168.100.25) for 10 minutes.

Which Access Control List (ACL) will help to accomplish this requirement?

Show Answer
Correct Answer: B

To restrict access to a load balancing virtual server for a specific time, we need to use an Access Control List (ACL) that denies traffic to the destination IP of the virtual server. The correct command is 'add ns acl rule1 DENY -destIP 192.168.100.25 -TTL 600'. This command denies traffic to the IP address 192.168.100.25 for 600 seconds, which is equivalent to 10 minutes. Thus, option B is the correct choice.

Discussion

2 comments
Sign in to comment
Jogaz0Option: B
Oct 14, 2023

The correct Access Control List (ACL) to restrict access to the load balancing virtual server (192.168.100.25) for 10 minutes would be add ns acl rule1 DENY -destIP 192.168.100.25 -TTL 600. So, the answer is B. add ns acl rule1 DENY -destIP 192.168.100.25 -TTL 6001. This is because: The add ns acl command is used to add an ACL rule in Citrix ADC1. The DENY option is used to deny access1. The -destIP 192.168.100.25 option specifies the IP address of the load balancing virtual server1. The -TTL 600 option sets the Time To Live (TTL) for the rule to 600 seconds, which is equivalent to 10 minutes1. Please note that it’s important to use the correct syntax and consider whether you’re working with a request or a response.

ugurcanOption: A
Mar 26, 2023

Answer A This command creates a simple access control list (ACL) that blocks traffic to the load balancing virtual server with the IP address of 192.168.100.25 from all source IP addresses. The TTL parameter is set to 10, indicating that the rule will be in effect for 10 minutes.