Question 1,726 of 1,819
Network Services and SecurityhardMultiple ChoiceObjective-mapped

Quick Answer

The answer is the TCP or UDP source port number. This is correct because Port Address Translation, or PAT, multiplexes multiple inside hosts through a single public IPv4 address by rewriting the Layer 4 source port of each outgoing packet to a unique value, then tracking these mappings in a translation table. When a response returns to the public address, the router looks up the destination port to identify which inside host should receive it, making the source port the key distinguishing factor for each flow. On the CCNA 200-301 v2 exam, this concept tests your understanding of NAT overload and how PAT differs from static or dynamic NAT, often appearing in questions about session uniqueness or translation table entries. A common trap is assuming the IP address or sequence number differentiates flows, but PAT relies entirely on port numbers for multiplexing. Memory tip: think of PAT as a busy receptionist—the public IP is the office number, but the source port is the specific extension that routes each call to the right desk.

CCNA Network Services and Security Practice Question

This 200-301 practice question tests your understanding of network services and security. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: pAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.. 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 router performing PAT is using a single public IPv4 address for many inside hosts. Which value most often distinguishes one inside flow from another on the same outside address?

Question 1hardmultiple choice
Read the full NAT/PAT explanation →

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

TCP or UDP source port

PAT commonly multiplexes sessions by translating Layer 4 source port numbers.

Key principle: PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • TTL

    Why it's wrong here

    TTL is not the main distinguishing value PAT uses for many simultaneous translations.

    When this WOULD be correct

    In a different question, if it asked about identifying the characteristics of packets in a network where multiple packets from the same source IP are being analyzed, TTL could be relevant in discussing how long packets remain valid in the network before being discarded.

  • DSCP

    Why it's wrong here

    DSCP is QoS marking, not the PAT differentiator.

    When this WOULD be correct

    In a scenario where the question asks about traffic management and prioritization for Quality of Service (QoS) in a network, DSCP could be the correct answer if the focus is on how packets are treated based on their DSCP values rather than on NAT or PAT operations.

  • TCP or UDP source port

    Why this is correct

    Correct. PAT uses port numbers to distinguish flows.

    Related concept

    PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.

  • MAC address of the host

    Why it's wrong here

    MAC addresses are not preserved across routed NAT boundaries.

    When this WOULD be correct

    In a question focused on local area network (LAN) segmentation or device identification, where MAC addresses are relevant for distinguishing devices within the same subnet, this option would be correct. For example, a question might ask which identifier is used to manage traffic within a switched network environment.

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 200-301 exam frequently reuses these exact scenarios with slightly different constraints.

TCP or UDP source portCorrect answer

Why this is correct

Correct. PAT uses port numbers to distinguish flows.

TTLWrong answer — click to see why

Why this is wrong here

TTL (Time to Live) is a field in the IP header that determines the lifespan of a packet in the network, but it does not distinguish between different flows of traffic from the same source IP address in NAT or PAT scenarios.

★ When this WOULD be the correct answer

In a different question, if it asked about identifying the characteristics of packets in a network where multiple packets from the same source IP are being analyzed, TTL could be relevant in discussing how long packets remain valid in the network before being discarded.

Why candidates choose this

Candidates may confuse TTL with flow identification due to its role in routing and packet management, mistakenly believing it could serve as a unique identifier for different sessions or flows.

DSCPWrong answer — click to see why

Why this is wrong here

DSCP (Differentiated Services Code Point) is used for traffic classification and prioritization in IP networks, but it does not distinguish between different flows when multiple inside hosts share a single public IP address in PAT. It is not involved in the mapping of internal to external addresses.

★ When this WOULD be the correct answer

In a scenario where the question asks about traffic management and prioritization for Quality of Service (QoS) in a network, DSCP could be the correct answer if the focus is on how packets are treated based on their DSCP values rather than on NAT or PAT operations.

Why candidates choose this

Candidates may confuse DSCP with flow identification due to its role in managing traffic and might mistakenly believe it plays a part in distinguishing flows in NAT scenarios, leading to the selection of this option.

MAC address of the hostWrong answer — click to see why

Why this is wrong here

The MAC address operates at Layer 2 of the OSI model and is not used in the context of PAT, which operates at Layer 3 and above. Therefore, MAC addresses do not distinguish between flows on a single public IP address in NAT scenarios.

★ When this WOULD be the correct answer

In a question focused on local area network (LAN) segmentation or device identification, where MAC addresses are relevant for distinguishing devices within the same subnet, this option would be correct. For example, a question might ask which identifier is used to manage traffic within a switched network environment.

Why candidates choose this

Candidates may be tempted to choose this option because they associate MAC addresses with unique device identification, leading them to mistakenly believe it applies to traffic management in NAT scenarios.

Analysis generated from the official 200-301blueprint 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

A common exam trap is selecting TTL or DSCP as the distinguishing value for inside flows in PAT. TTL is often mistaken because it changes during routing, but it does not uniquely identify sessions. DSCP is related to Quality of Service and does not influence NAT translations. Another trap is thinking MAC addresses can be used to differentiate flows; however, MAC addresses are stripped and replaced at each routed hop, so they are irrelevant in PAT. The correct distinguishing factor is the TCP or UDP source port number, which PAT uses to multiplex multiple inside hosts over a single public IP address.

Detailed technical explanation

How to think about this question

Port Address Translation (PAT), a form of Network Address Translation (NAT), allows multiple inside hosts to share a single public IPv4 address by differentiating their sessions using Layer 4 port numbers. When inside hosts initiate connections to outside networks, PAT translates their private IP addresses and source ports to the router's public IP address and unique source ports. This multiplexing enables many simultaneous flows to coexist over one public IP, conserving IPv4 address space. The key mechanism PAT uses to distinguish one inside flow from another on the same outside address is the TCP or UDP source port number. Each translated session is assigned a unique source port number on the router’s public IP address, creating a unique tuple of (public IP, source port, destination IP, destination port) that identifies the flow. This allows the router to correctly forward return traffic to the originating inside host by reversing the translation. A common exam trap is confusing PAT’s use of port numbers with other packet header fields like TTL or DSCP. TTL decrements at each hop and does not uniquely identify flows, while DSCP is a QoS marking unrelated to NAT translation. MAC addresses are not preserved across routed boundaries, so they cannot distinguish flows in PAT. Understanding that PAT relies on Layer 4 port multiplexing is critical for Cisco CCNA exam success and practical NAT troubleshooting.

KKey Concepts to Remember

  • PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.
  • A router performing PAT translates inside private IP addresses and source ports to the router’s public IP address with unique source ports to distinguish flows.
  • The TCP or UDP source port number is the primary value that differentiates simultaneous inside flows on the same outside IP address in PAT.
  • TTL values decrement with each hop and do not serve as identifiers for distinguishing NAT flows in PAT.
  • DSCP is a QoS marking used for traffic prioritization and does not affect NAT or flow differentiation in PAT.
  • MAC addresses are not preserved across routed NAT boundaries and cannot be used to distinguish inside flows on the same outside IP address.
  • PAT creates a unique translation table entry for each inside flow based on the combination of inside IP, inside port, outside IP, and outside port.
  • Understanding PAT’s port multiplexing is essential for troubleshooting NAT issues and for Cisco CCNA exam questions on IP Services.

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

PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.

Real-world example

How this comes up in practice

A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

What to study next

Got this wrong? Here's your next step.

Review pAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session., then practise related 200-301 questions on the same topic to reinforce the concept.

Related practice questions

Related 200-301 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free 200-301 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 200-301 question test?

Network Services and Security — This question tests Network Services and Security — PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session..

What is the correct answer to this question?

The correct answer is: TCP or UDP source port — PAT commonly multiplexes sessions by translating Layer 4 source port numbers.

What should I do if I get this 200-301 question wrong?

Review pAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session., then practise related 200-301 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

PAT allows multiple inside hosts to share a single public IPv4 address by using unique TCP or UDP source port numbers for each session.

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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: May 17, 2026

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.

Loading comments…

Sign in to join the discussion.

This 200-301 practice question is part of Courseiva's free Cisco 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 200-301 exam.