- A
The syslog server is using the wrong protocol (TCP instead of UDP)
Why wrong: While some syslog implementations support TCP, by default syslog uses UDP. The issue is more likely a firewall blocking the port.
- B
UDP port 514 is blocked between the router and the server
The router can reach the server (ping works), so the path is up. Syslog relies on UDP 514; if that port is blocked, logs will not be delivered.
- C
The syslog service on the server is not running
Why wrong: If the service were not running, the server would not respond, but that would not prevent the router from sending the messages; the server simply would not log them. The lack of receipt indicates a delivery problem.
- D
The router's clock is not synchronized with the server
Why wrong: Time synchronization affects log timestamps but does not prevent the router from sending syslog messages.
N10-009 Network Operations Practice Question
This N10-009 practice question tests your understanding of network operations. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A network administrator configures a router to send syslog messages to a central log server. The administrator can ping the server from the router, but the server is not receiving any logs. What is the most likely cause?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"most likely"Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
UDP port 514 is blocked between the router and the server
Syslog messages are sent via UDP port 514 by default. Since the administrator can ping the server (ICMP works), but no logs arrive, the most likely cause is that a firewall or ACL is blocking UDP port 514 between the router and the server. This is a classic connectivity issue where Layer 3 reachability exists but the specific transport-layer port is filtered.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The syslog server is using the wrong protocol (TCP instead of UDP)
- ✓
UDP port 514 is blocked between the router and the server
Why this is correct
The router can reach the server (ping works), so the path is up. Syslog relies on UDP 514; if that port is blocked, logs will not be delivered.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
The syslog service on the server is not running
Why it's wrong here
If the service were not running, the server would not respond, but that would not prevent the router from sending the messages; the server simply would not log them. The lack of receipt indicates a delivery problem.
When this WOULD be correct
This option would be correct in a scenario where the administrator can ping the server and the firewall allows UDP 514, but logs are still not appearing. For example, if the syslog daemon on the server has crashed or is misconfigured to listen on a different port, the server would not receive logs despite network connectivity.
- ✗
The router's clock is not synchronized with the server
Why it's wrong here
Time synchronization affects log timestamps but does not prevent the router from sending syslog messages.
When this WOULD be correct
In a scenario where the syslog server is receiving logs but they contain incorrect timestamps, the most likely cause would be that the router's clock is not synchronized with the server. For example, if logs show events from the future or past, NTP misconfiguration would be the primary suspect.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The N10-009 exam frequently reuses these exact scenarios with slightly different constraints.
✓UDP port 514 is blocked between the router and the serverCorrect answer▾
Why this is correct
The router can reach the server (ping works), so the path is up. Syslog relies on UDP 514; if that port is blocked, logs will not be delivered.
✗The syslog server is using the wrong protocol (TCP instead of UDP)Wrong answer — click to see why▾
Why this is wrong here
Syslog messages are sent via UDP by default, not TCP. The question states the server is not receiving logs despite successful ping, indicating a network filtering issue rather than a protocol mismatch.
★ When this WOULD be the correct answer
If the question specified that the syslog server is configured to receive logs over TCP (e.g., for reliable delivery) and the router is sending UDP, then the protocol mismatch would be the cause.
Why candidates choose this
Candidates may confuse syslog's default UDP transport with other services that use TCP, or assume that a protocol mismatch is a common cause of connectivity issues.
✗The syslog service on the server is not runningWrong answer — click to see why▾
Why this is wrong here
The administrator can ping the server, indicating network connectivity, but the server is not receiving logs. If the syslog service were not running, the server would still receive the UDP packets but would not process them; however, the question states the server is not receiving any logs, implying the packets are not reaching the server, which points to a firewall blocking UDP port 514 rather than a service issue.
★ When this WOULD be the correct answer
This option would be correct in a scenario where the administrator can ping the server and the firewall allows UDP 514, but logs are still not appearing. For example, if the syslog daemon on the server has crashed or is misconfigured to listen on a different port, the server would not receive logs despite network connectivity.
Why candidates choose this
Candidates may think that if the service is not running, logs cannot be received, overlooking that the question states the server is not receiving any logs (packets not arriving) rather than logs arriving but not being processed. They also might assume a service issue is more common than a firewall block.
✗The router's clock is not synchronized with the serverWrong answer — click to see why▾
Why this is wrong here
The router can ping the server, indicating basic IP connectivity. Syslog uses UDP port 514 by default; if the server were not running the syslog service, the router would still send messages, but they would be dropped at the server. The issue is more likely a firewall blocking UDP 514, as the server not running would not prevent the router from sending (it would just not process them).
★ When this WOULD be the correct answer
In a scenario where the syslog server is receiving logs but they contain incorrect timestamps, the most likely cause would be that the router's clock is not synchronized with the server. For example, if logs show events from the future or past, NTP misconfiguration would be the primary suspect.
Why candidates choose this
Candidates may think that clock synchronization is critical for syslog to function at all, confusing timestamp accuracy with the ability to receive logs. They might also assume that a ping response implies full network path availability, overlooking that ping uses ICMP while syslog uses UDP, which can be blocked separately.
Analysis generated from the official N10-009blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates see 'ping works' and assume full connectivity, forgetting that syslog uses a specific UDP port that may be filtered even when ICMP is permitted.
Detailed technical explanation
How to think about this question
Syslog uses UDP port 514 for its transport, which is connectionless and does not provide delivery guarantees. A common real-world scenario is that network engineers forget to add an ACL permit statement for UDP 514 on the router's outbound interface or on a firewall between the devices, even when ICMP (ping) is allowed. Additionally, some syslog servers listen on UDP 514 by default, but if the server is configured to use TCP (e.g., port 6514), the router's default UDP syslog messages will never reach it.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.
Visual reference
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Network Operations — study guide chapter
Learn the concepts, then practise the questions
- →
Network Operations practice questions
Targeted practice on this topic area only
- →
All N10-009 questions
520 questions across all exam domains
- →
CompTIA Network+ N10-009 study guide
Full concept coverage aligned to exam objectives
- →
N10-009 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related N10-009 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Networking Concepts practice questions
Practise N10-009 questions linked to Networking Concepts.
Network Implementation practice questions
Practise N10-009 questions linked to Network Implementation.
Network Operations practice questions
Practise N10-009 questions linked to Network Operations.
Network Security practice questions
Practise N10-009 questions linked to Network Security.
Network Troubleshooting practice questions
Practise N10-009 questions linked to Network Troubleshooting.
Network+ network fundamentals practice questions
Practise N10-009 questions linked to Network+ network fundamentals.
Practice this exam
Start a free N10-009 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this N10-009 question test?
Network Operations — This question tests Network Operations — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: UDP port 514 is blocked between the router and the server — Syslog messages are sent via UDP port 514 by default. Since the administrator can ping the server (ICMP works), but no logs arrive, the most likely cause is that a firewall or ACL is blocking UDP port 514 between the router and the server. This is a classic connectivity issue where Layer 3 reachability exists but the specific transport-layer port is filtered.
What should I do if I get this N10-009 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More N10-009 practice questions
- Which of the following network devices operates primarily at Layer 2 of the OSI model and uses MAC addresses to forward…
- Which of the following is a characteristic of UDP when compared to TCP?
- Which of the following IPv6 addresses is a valid link-local address?
- Which of the following security mechanisms requires a user to authenticate before gaining access to the wired network at…
- Which of the following network protocols operates at the Transport layer of the OSI model and provides connection-orient…
- Which of the following is a characteristic of a connectionless protocol at the transport layer?
Last reviewed: Jun 11, 2026
This N10-009 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the N10-009 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.