Difficulty: Easy
Correct Answer: Time To Live
Explanation:
Introduction / Context:
TTL is a core parameter used in multiple computing contexts. In IP networking, it prevents packets from circulating indefinitely; in DNS, it dictates how long records may be cached. Understanding TTL helps troubleshoot routing loops, traceroute output, and cache behaviors.
Given Data / Assumptions:
Concept / Approach:
TTL stands for Time To Live. In IP headers, TTL is a hop-limit value decremented by each router; when it reaches zero, the packet is discarded and an ICMP message may be sent. In DNS, TTL is a duration indicating how long a resolver can cache an RR set before refreshing.
Step-by-Step Solution:
Recall common networking abbreviations: TTL is universally “Time To Live”.Compare options, eliminating phrases that are not standard protocol terminology.Select the expansion recognized by RFCs and textbooks.
Verification / Alternative check:
IP packet structure diagrams show an 8-bit TTL field; DNS zone files contain TTL values like 300 seconds for caching policies.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing TTL with hop count or with TCP timeouts; TTL is decremented per hop (or interpreted as hop limit in IPv6) and is distinct from transport-level timers.
Final Answer:
Time To Live
Discussion & Comments