A network administrator is configuring an extended IPv4 Access Control List (ACL) on a core router to permit administrator workstations on subnet to manage remote servers on subnet using Remote Desktop Protocol (RDP). The administrator configures the following ACL entry inbound on the router interface connected to the administrator subnet:
`access-list 110 permit tcp 172.20.10.0 0.0.0.255 eq 3389 10.30.50.0 0.0.0.255`
`access-list 110 deny ip any any`
After applying the ACL, administrators report that RDP connection attempts to the servers time out. Which of the following identifies the configuration error in the ACL entry?
- The rule places the port filter parameter (`eq 3389`) after the source subnet instead of after the destination subnet.Answer
- BThe explicit `deny ip any any` statement overrides the permit statement because implicit deny rules take precedence over custom permit entries.
- CThe rule specifies the TCP protocol, whereas standard Remote Desktop Protocol (RDP) connection negotiation relies exclusively on UDP.
- DThe extended ACL is applied on a Layer 3 interface, which limits filtering capabilities strictly to IP addresses rather than Layer 4 port numbers.
Answer
The configuration error is that the port filter parameter (`eq 3389`) is positioned immediately after the source IP address structure instead of after the destination IP address structure in the extended ACL statement.
The correct answer correctly identifies that `eq 3389` was placed after the source network parameters rather than the destination network parameters. In extended ACLs, client-initiated traffic uses dynamic source ports, so service port filters like RDP (TCP 3389) must be appended after the destination IP address.
Step-by-Step Solution
Key Concept
Extended Access Control List (ACL) Syntax and Port Placement