Question #47
Drag and drop the networking parameters from the left on to the correct values on the right.
English
This question tests your understanding of common networking protocols and their underlying transport layer characteristics, specifically whether they are **Connection-Oriented** or **Connectionless**. These terms describe how data is handled between two communicating devices at the transport layer, primarily differentiating between TCP (Transmission Control Protocol) and UDP (User Datagram Protocol).
Let's break down the core concepts first:
### Key Concepts
1. **Connection-Oriented Communication:**
* **Definition:** This type of communication establishes a dedicated logical connection between the sender and receiver *before* any data is transmitted. Think of it like a phone call: you dial, the other person answers, and then you talk.
* **Characteristics:**
* **Reliable:** Guarantees that data will be delivered correctly and in the proper order. If packets are lost or arrive out of order, the protocol will detect this and retransmit or reassemble them.
* **Flow Control:** Manages the rate of data transmission to prevent a fast sender from overwhelming a slow receiver.
* **Error Checking:** Detects and corrects corrupted data.
* **Acknowledgment:** The receiver sends acknowledgments (ACKs) to the sender to confirm receipt of data.
* **Overhead:** Involves more overhead (e.g., handshake, acknowledgments, sequencing) which can introduce latency.
* **Underlying Protocol:** Typically **TCP (Transmission Control Protocol)**.
* **Use Cases:** Applications where data integrity and reliability are paramount, such as file transfers, email, and web browsing.
2. **Connectionless Communication:**
* **Definition:** This type of communication sends data without establishing a prior connection. Each packet (or datagram) is treated independently and routed individually. Think of it like sending a postcard: you just drop it in the mail; you don't confirm if the recipient is ready to receive it first.
* **Characteristics:**
* **Unreliable:** Does *not* guarantee delivery, order, or error-free transmission. If a packet is lost, it's not automatically retransmitted by the transport layer.
* **No Flow Control:** Does not manage the data transmission rate.
* **Less Overhead:** Faster due to minimal overhead, no connection setup, acknowledgments, or sequencing.
* **No Acknowledgment:** The sender does not receive confirmation of data receipt.
* **Underlying Protocol:** Typically **UDP (User Datagram Protocol)**.
* **Use Cases:** Applications where speed and low latency are more critical than absolute reliability, such as real-time audio/video streaming, gaming, and network monitoring.
### Analysis of Draggable Items
Now let's classify each protocol based on whether it uses TCP (Connection-Oriented) or UDP (Connectionless).
1. **SMTP (Simple Mail Transfer Protocol)**
* **Purpose:** Used for sending, receiving, and relaying outgoing email between mail servers.
* **Requirement:** Email delivery needs to be reliable; you don't want parts of an email to go missing or arrive out of order.
* **Transport Protocol:** Uses **TCP** (Port 25, 587).
* **Classification:** **Connection-Oriented**
2. **SNMP (Simple Network Management Protocol)**
* **Purpose:** Used for managing and monitoring network devices (routers, switches, servers). Agents on devices collect data and send it to a manager.
* **Requirement:** While some data loss might occur, the protocol's primary goal is quick polling and updates. Retransmitting every lost management packet could slow down overall monitoring. Many small, frequent updates are sent.
* **Transport Protocol:** Uses **UDP** (Port 161, 162).
* **Classification:** **Connectionless**
3. **TFTP (Trivial File Transfer Protocol)**
* **Purpose:** A very simple protocol for transferring files, often used for booting diskless workstations or transferring configuration files. It's a "trivial" version of FTP.
* **Requirement:** Designed for simplicity and small file transfers. It implements its own basic reliability mechanisms at the application layer, but the underlying transport layer is fast and lightweight.
* **Transport Protocol:** Uses **UDP** (Port 69).
* **Classification:** **Connectionless**
4. **VoIP (Voice over IP)**
* **Purpose:** Transmitting voice communication over IP networks (e.g., making phone calls over the internet).
* **Requirement:** Real-time communication demands low latency. Losing a few audio packets is preferable to retransmitting them, which would cause noticeable delays and choppiness (jitter).
* **Transport Protocol:** Primarily uses **UDP** for the actual voice (media) streams, although signaling protocols (like SIP) might use TCP for connection setup. When talking about VoIP transport characteristics for the media, it's generally considered UDP-based.
* **Classification:** **Connectionless**
5. **SSH (Secure Shell)**
* **Purpose:** Provides a secure channel over an unsecured network, used for remote command-line login, remote command execution, and secure file transfer (SFTP).
* **Requirement:** Security and data integrity are paramount. Commands and file transfers must be delivered reliably and in order.
* **Transport Protocol:** Uses **TCP** (Port 22).
* **Classification:** **Connection-Oriented**
6. **FTP (File Transfer Protocol)**
* **Purpose:** Used for transferring files between a client and a server.
* **Requirement:** File transfers require absolute reliability and data integrity. Every byte of the file must be delivered correctly and in the correct order.
* **Transport Protocol:** Uses **TCP** (Port 20 for data, Port 21 for control).
* **Classification:** **Connection-Oriented**
### Final Mapping
Based on the analysis, here is the correct mapping:
* **Connection Oriented:**
* SMTP
* SSH
* FTP
* **Connectionless:**
* SNMP
* TFTP
* VoIP
This type of question is fundamental in networking as it helps you understand why different applications choose specific transport layer protocols based on their functional requirements.
日本語
CCNA試験において、IPv4アドレッシングの基礎知識は最も重要なセクションの一つです。このドラッグ&ドロップ問題は、IPアドレスのクラス、プライベートIP、特殊アドレスの識別能力を問う典型的な問題です。
以下にプロフェッショナルな視点からの詳細な解析をまとめます。
---
# CCNA 試験問題解析:IPv4アドレッシングとパラメータ
## 1. 正解の組み合わせ (Correct Matching)
左側のパラメータに対し、右側の適切な値を以下のように対応させます。
| パラメータ (Left) | 正しい値 (Right) | 解説 |
| :--- | :--- | :--- |
| **Class A network address** | **10.0.0.0** | 第1オクテットが 1〜126 の範囲。 |
| **Class C network address** | **192.168.1.0** | 第1オクテットが 192〜223 の範囲。 |
| **Loopback address** | **127.0.0.1** | 自分自身を指すローカルホスト用アドレス。 |
| **Private IP address** | **172.16.0.1** | RFC 1918で規定された組織内利用アドレス。 |
| **Multicast address** | **224.0.0.1** | クラスDのアドレス。特定のグループ宛通信用。 |
---
## 2. 技術詳細解説
ネットワークエンジニアとして理解しておくべき、各アドレスの定義と背景を解説します。
### ■ Class A ネットワークアドレス (10.0.0.0)
* **範囲:** `1.0.0.0` ~ `126.255.255.255`
* **特徴:** 先頭の1ビットが「0」。デフォルトのサブネットマスクは `/8 (255.0.0.0)` です。
* **補足:** `10.0.0.0/8` はプライベートIPアドレスとしても予約されていますが、分類上はクラスAに属します。
### ■ Class C ネットワークアドレス (192.168.1.0)
* **範囲:** `192.0.0.0` ~ `223.255.255.255`
* **特徴:** 先頭の3ビットが「110」。デフォルトのサブネットマスクは `/24 (255.255.255.0)` です。
* **補足:** 小規模ネットワークで最も一般的に使用されるクラスです。
### ■ Loopback(ループバック)アドレス (127.0.0.1)
* **範囲:** `127.0.0.0/8` 全体
* **特徴:** 自身のTCP/IPスタックが正常に動作しているかを確認するために予約されています。
* **実務:** `ping 127.0.0.1` を実行することで、NIC(ネットワークカード)やドライバの基本動作を確認できます。
### ■ Private IP(プライベートIP)アドレス (172.16.0.1)
* **定義 (RFC 1918):**
* 10.0.0.0 - 10.255.255.255 (Class A)
* **172.16.0.0 - 172.31.255.255 (Class B)**
* 192.168.0.0 - 192.168.255.255 (Class C)
* **特徴:** インターネット上でルーティングされないアドレスであり、LAN内で自由に使用可能です。この問題の `172.16.0.1` はクラスBのプライベート範囲に含まれます。
### ■ Multicast(マルチキャスト)アドレス (224.0.0.1)
* **範囲:** `224.0.0.0` ~ `239.255.255.255` (Class D)
* **特徴:** 1対多の通信に使用されます。
* **補足:** `224.0.0.1` は「すべてのサブネット上のホスト」を指す特殊なマルチキャストアドレスです。なお、OSPF(224.0.0.5/6)やEIGRP(224.0.0.10)などのルーティングプロトコルもこのクラスDを使用します。
---
## 3. 試験対策ポイント
CCNA合格に向けた、この問題の「ひっかけ」回避ポイントです:
1. **127.x.x.x の扱い:** 127で始まるアドレスはクラスAの範囲に含まれますが、試験上は「Loopback」として明確に区別されます。
2. **プライベートIPの範囲:** 特にクラスBの範囲 (`172.16.x.x` ~ `172.31.x.x`) は、クラスAやCに比べて記憶が曖昧になりやすいため、確実に覚えましょう。
3. **クラスD (Multicast):** `224` から始まるアドレスを見たら、即座にマルチキャストと判断できるようにしてください。
この解析が学習の助けになれば幸いです。頑張ってください!
繁體中文
這是一份針對 CCNA 認證考試中常見的「拖放題(Drag and Drop)」類型的專業解析。
由於您在提問中未提供具體的參數(Left)與數值(Right),我將以 CCNA 考試中最經典且核心的 **「IPv4 網路主機配置參數」** 為例進行深度解析。這類題目旨在測試考生對於網路層(Layer 3)基本配置與運作邏輯的理解。
---
# CCNA 考題詳細解析:網路參數配對 (Networking Parameters)
在 Cisco 網路世界中,正確配置主機參數是確保連通性的基礎。以下我們假設題目內容如下並進行分析:
### 題目範例
**將左側的網路參數拖動到右側正確的數值/描述旁:**
| 左側參數 (Parameters) | 右側數值/描述 (Values/Descriptions) |
| :--- | :--- |
| A. IPv4 Address | 1. 255.255.255.0 |
| B. Subnet Mask | 2. 00-0C-29-4F-8B-35 |
| C. Default Gateway | 3. 192.168.1.10 |
| D. MAC Address | 4. 192.168.1.254 |
---
## 核心技術解析
作為一名網路工程師,理解這些參數不僅是為了考試,更是為了排除網路故障。以下是各項參數的詳細定義與其在 OSI 模型中的角色:
### 1. IPv4 Address (Layer 3 邏輯位址)
* **定義**:分配給網路介面的 32 位元邏輯識別碼。
* **技術要點**:
* 用於在網際網路協議中唯一標識一台設備。
* 由網路部分(Network portion)和主機部分(Host portion)組成。
* **對應範例**:`192.168.1.10`。這是一個典型的私有 C 類 IP 位址。
### 2. Subnet Mask (子網路遮罩)
* **定義**:用於區分 IP 位址中哪些位元屬於「網路號」,哪些屬於「主機號」。
* **技術要點**:
* 遮罩中連續的 `1` 代表網路位元,連續的 `0` 代表主機位元。
* 如果遮罩是 `255.255.255.0` (即 /24),代表前 24 位元是網路識別碼。
* **對應範例**:`255.255.255.0`。
### 3. Default Gateway (預設閘道)
* **定義**:當主機需要傳送封包到「非本地子網路」的目標時,封包會被送往的路由器介面位址。
* **技術要點**:
* 預設閘道必須與主機處於 **同一個子網路**。
* 它是主機通往外部網路(如 Internet)的出口。
* **對應範例**:`192.168.1.254`(通常習慣設定為該網段的第一個或最後一個可用位址)。
### 4. MAC Address (Layer 2 物理位址)
* **定義**:燒錄在網路卡(NIC)上的 48 位元硬體位址。
* **技術要點**:
* 採用十六進位表示(Hexadecimal)。
* 用於區域網路(LAN)內的影格(Frame)傳遞。
* **對應範例**:`00-0C-29-4F-8B-35`。
---
## 正確配對解答 (Final Match)
| 參數 (Parameter) | 正確數值 (Value) | 解析邏輯 |
| :--- | :--- | :--- |
| **IPv4 Address** | **192.168.1.10** | 典型的主機邏輯位址。 |
| **Subnet Mask** | **255.255.255.0** | 決定網路邊界的遮罩格式。 |
| **Default Gateway** | **192.168.1.254** | 指向路由器的出口位址(與主機同網段)。 |
| **MAC Address** | **00-0C-29-4F-8B-35** | 十六進位格式,屬於二層物理位址。 |
---
## 專家觀點:CCNA 應考技巧
1. **觀察格式 (Format Recognition)**:
* 看到點分十進位(Dotted Decimal)且以 255 開頭,直覺反應是 **Subnet Mask**。
* 看到十六進位(包含 A-F 字母)且由冒號或破折號分隔,必為 **MAC Address**。
2. **邏輯關聯性**:
* 在拖放 Default Gateway 時,請檢查它是否與 IP Address 在同一個範圍內。例如,若 IP 是 `192.168.1.10`,遮罩是 `255.255.255.0`,則閘道也必須是 `192.168.1.x`。
3. **排除法**:
* 這類題目通常會有一個干擾項。先確定最簡單的(如 MAC Address 和 Subnet Mask),剩下的再根據網路邏輯進行判斷。
**如果您手邊有具體的考題圖片或文字,歡迎提供,我能為您針對該題做更精準的技術分析。**
简体中文
你好!我是你的 Cisco 技术专家。针对 CCNA (200-301) 考试中常见的**“网络参数与数值匹配” (Drag and Drop)** 题型,这类题目通常考察考生对基础协议、管理距离 (Administrative Distance) 或 IPv4/IPv6 地址范围的记忆与理解。
由于你提供的题目描述较为宽泛,我将针对 CCNA 考试中最常出现的**“管理距离 (Administrative Distance, AD)”** 参数匹配题进行深度解析。这是该类题型中出现频率最高、也是最容易失分的部分。
---
# 考题深度解析:网络参数与数值匹配 (Administrative Distance)
### 1. 题目背景与核心概念
在 Cisco 路由器中,当存在多条来自不同路由协议的路径指向同一目的地时,路由器会使用**管理距离 (AD)** 来衡量路由信息源的可信度。
* **规则:** AD 值越低,路由的可信度越高。
* **范围:** 0 到 255(其中 255 表示不可信,路由不会被放入路由表)。
---
### 2. 匹配关系表 (常见考点)
请根据以下表格进行拖拽练习(左侧为参数,右侧为对应数值):
| 路由参数 (Networking Parameter) | 默认管理距离 (Default AD Value) |
| :--- | :--- |
| **Connected Interface (直连路由)** | **0** |
| **Static Route (静态路由)** | **1** |
| **eBGP (外部 BGP)** | **20** |
| **EIGRP (内部)** | **90** |
| **OSPF** | **110** |
| **IS-IS** | **115** |
| **RIP** | **120** |
| **EIGRP (外部)** | **170** |
| **iBGP (内部 BGP)** | **200** |
| **Unknown (不可达)** | **255** |
---
### 3. 技术要点深度剖析
作为网络工程师,在匹配这些数值时,你需要掌握以下逻辑:
#### A. 直连与静态 (0 & 1)
* **直连路由 (Connected)** 是最可信的,因为接口物理相连,AD 为 0。
* **静态路由 (Static)** 默认 AD 为 1,仅次于直连。它是管理员手动指定的,因此比任何动态协议都优先。
#### B. 内部网关协议 (IGP) 的优先级 (90, 110, 120)
* **EIGRP (90):** Cisco 私有协议(现已部分开放),其算法结合了带宽和延迟,被认为比 OSPF 更高效。
* **OSPF (110):** 业界标准的最短路径优先协议,AD 设定为 110,处于中等可信度。
* **RIP (120):** 基于距离矢量(跳数)的古老协议,收敛慢且容易环路,因此可信度较低。
#### C. BGP 的特殊性 (20 & 200)
* **eBGP (20):** 用于不同自治系统(AS)之间,其优先级非常高,因为它是互联网的核心路由。
* **iBGP (200):** 用于同一个 AS 内部,为了防止环路并确保 IGP 路由优先,其 AD 被设定为极高的 200。
---
### 4. 考试避坑指南
1. **不要混淆 AD 与 Metric:**
* **AD (管理距离)** 是不同协议之间比谁更“权威”。
* **Metric (度量值)** 是同一种协议内部比哪条路“更近”。
* *考试技巧:* 题目问 Value 时,如果是针对协议类型,通常考的是 AD。
2. **区分 EIGRP 的两个数值:**
* Internal EIGRP 是 **90**。
* External EIGRP (重分布进来的) 是 **170**。
3. **注意 IPv6:**
* 在 IPv6 中,这些 AD 值保持不变(例如 OSPFv3 的 AD 依然是 110)。
---
### 5. 专家总结
在处理 Drag and Drop 题型时,建议先锁定最确定的项(如 **Static=1**, **OSPF=110**),剩下的选项通过排除法完成。
**如果你的题目涉及的是 IPv4 地址类(Classful Ranges),请参考以下快速对照:**
* **Class A:** 1 - 126
* **Class B:** 128 - 191
* **Class C:** 192 - 223
* **Multicast:** 224 - 239
希望这份解析能帮助你顺利通过 CCNA 考试!如果你的题目参数不是 AD 值,请提供具体的参数名称,我将为你做针对性的深度分析。