1Y0-231 · Question #29
Scenario: A Citrix Administrator suspects an attack on a load-balancing virtual server (IP address 192.168.100.25). The administrator needs to restrict access to this virtual server for 10 minutes…
The correct answer is D. add simpleacl rule1 DENY -srcIP 192.168.100.25 -TTL 600. Option D is correct because simpleacl is the appropriate ACL type for a quick, temporary block - it takes effect immediately without requiring a separate apply ns acls command, and the TTL of 600 represents 600 seconds (exactly 10 minutes), which matches the requirement. Why…
Question
Scenario: A Citrix Administrator suspects an attack on a load-balancing virtual server (IP address 192.168.100.25). The administrator needs to restrict access to this virtual server for 10 minutes. Which access control list (ACL) will accomplish this?
Options
- Aadd ns acl rule1 DENY -destIP 192.168.100.25 -TTL 600000
- Badd simpleacl rule1 DENY -srcIP 192.168.100.25 -TTL 600000
- Cadd ns acl rule1 DENY -destIP 192.168.100.25 -TTL 600
- Dadd simpleacl rule1 DENY -srcIP 192.168.100.25 -TTL 600
How the community answered
(32 responses)- B9% (3)
- C6% (2)
- D84% (27)
Explanation
Option D is correct because simpleacl is the appropriate ACL type for a quick, temporary block - it takes effect immediately without requiring a separate apply ns acls command, and the TTL of 600 represents 600 seconds (exactly 10 minutes), which matches the requirement.
Why the others are wrong:
- A fails on two counts:
ns acl(extended ACL) requires an explicitapply ns aclscommand before it takes effect, and600000seconds equals nearly 7 days - far longer than 10 minutes. - B uses the correct
simpleacltype but specifiesTTL 600000, which is the same wrong duration as A. - C gets the TTL right (600 seconds) but uses
ns acl, which requires the apply step and is unnecessarily complex for a quick temporary block.
Memory tip: Think "Simple = Seconds, Simple = Speedy" - simpleacl measures TTL in seconds (600s = 10 min) and goes live immediately, while ns acl needs an apply command. When you need a fast, temporary block, reach for simpleacl.
Topics
Community Discussion
No community discussion yet for this question.