Difficulty: Easy
Correct Answer: 119
Explanation:
Introduction / Context:
Many application protocols are associated with well-known TCP or UDP port numbers. Recognizing these mappings helps with firewall rules, troubleshooting connectivity, and interpreting network scans. NNTP, which underpins Usenet news distribution and reading, has a long-established default port.
Given Data / Assumptions:
Concept / Approach:
NNTP uses TCP port 119 for traditional connections. For comparison, HTTP uses 80, finger uses 79, and Gopher (historical) uses 70. Secure NNTP commonly uses TCP 563. Knowing these numbers by heart is common in networking exams and is valuable when configuring network devices.
Step-by-Step Solution:
Verification / Alternative check:
Use tools like 'telnet server 119' or 'nc server 119' (if NNTP is enabled) to observe the NNTP greeting banner, confirming the port association in practice.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing NNTP with SMTP (25) or POP3 (110) due to all being message-related protocols; each has distinct port assignments.
Final Answer:
119
Discussion & Comments