Question

Difficulty: MediumFirewalls and Access Control Lists (ACLs)

An organization operates a centralized logging infrastructure where internal servers on the 192.168.10.0/24192.168.10.0/24 subnet transmit log data to a Syslog server at 172.16.50.25172.16.50.25. The network administrator configures an extended IPv4 Access Control List (ACL) with the rule `permit tcp 192.168.10.0 0.0.0.255 host 172.16.50.25 eq 514`. After applying this rule, no logs are received by the Syslog server. Which of the following modifications to the ACL will resolve the log transmission failure?

  1. Change the protocol in the ACL rule from TCP to UDP.Answer
  2. B
    Update the destination port number from 514 to 512 in the ACL entry.
  3. C
    Append an explicit permit rule for return traffic to bypass the implicit deny.
  4. D
    Reassign the ACL from the Layer 3 router interface to a Layer 2 switchport ACL.

Answer

Changing the protocol in the ACL rule from TCP to UDP resolves the transmission failure because standard Syslog messaging utilizes UDP port 514.
Standard Syslog traffic relies on UDP port 514. The configured ACL rule explicitly filtered for TCP packets, causing all UDP Syslog datagrams from the subnet to fall through to remaining rules and ultimately be dropped by the implicit deny.

Step-by-Step Solution

1
Identify the transport protocol used by standard Syslog services.
Standard Syslog operates using connectionless UDP on port 514.
Syslog applications by default generate UDP datagrams to minimize logging latency.
2
Analyze the configured ACL entry `permit tcp 192.168.10.0 0.0.0.255 host 172.16.50.25 eq 514`.
The rule inspects TCP headers for destination port 514 and drops UDP datagrams.
Extended ACLs perform exact matches on the IP transport protocol field (TCP vs UDP).
3
Determine the necessary ACL modification.
Modify `tcp` to `udp` in the access-list rule.
Matching UDP allows Syslog datagrams sent to destination port 514 to be permitted through the interface.

Key Concept

Extended Access Control List (ACL) Protocol Matching (TCP vs. UDP)
Rate this question