Question #2

Refer to the exhibit. Which prefix does Router1 use for traffic to Host A ?
A
10.10.10.0/28
B
10.10.13.0/25
C
10.10.13.144/28
D
10.10.13.208/29
English
This question asks us to identify which routing table entry Router1 will use to forward traffic destined for Host A. To answer this, we need to understand how routers make forwarding decisions, specifically the concept of **longest prefix match**. --- ### Understanding the Scenario and Router's Task 1. **Host A's IP Address:** From the diagram, Host A has the IP address `10.10.13.214`. 2. **Router1's Role:** Router1 needs to look at its routing table (`show ip route` output) to find the best path to reach `10.10.13.214`. 3. **Longest Prefix Match Rule:** When a router receives a packet, it compares the destination IP address of that packet against all the entries in its routing table. If multiple routes match the destination IP, the router chooses the route with the **longest subnet mask** (or **longest prefix length**). This is because a longer prefix represents a more specific network. --- ### Detailed Analysis of Router1's Routing Table Let's examine the `Router1#show ip route` output, focusing on entries that could potentially include `10.10.13.214`. We will calculate the network and broadcast addresses for each relevant entry to see if Host A's IP falls within its range. The output shows several routes starting with `10.10.13.x`. Let's evaluate them: * **`O 10.10.13.0/25`**: * **/25** means the subnet mask is `255.255.255.128`. * The network address is `10.10.13.0`. * The broadcast address for this network is `10.10.13.127` (since the 128 bit is set, the next network would start at 10.10.13.128). * The usable IP range is `10.10.13.1` to `10.10.13.126`. * **Does `10.10.13.214` fall in this range? No.** * **`O 10.10.13.128/28`**: * **/28** means the subnet mask is `255.255.255.240`. * Network increments are by `(256 - 240) = 16` in the fourth octet. * The network address `10.10.13.128` is a valid network for /28. * The next network would be `10.10.13.128 + 16 = 10.10.13.144`. * So, the broadcast address for `10.10.13.128/28` is `10.10.13.143`. * The usable IP range is `10.10.13.129` to `10.10.13.142`. * **Does `10.10.13.214` fall in this range? No.** * **`O 10.10.13.144/28`**: * **/28** (same as above, increments of 16). * The network address is `10.10.13.144`. * The next network would be `10.10.13.144 + 16 = 10.10.13.160`. * So, the broadcast address for `10.10.13.144/28` is `10.10.13.159`. * The usable IP range is `10.10.13.145` to `10.10.13.158`. * **Does `10.10.13.214` fall in this range? No.** * **`O 10.10.13.160/29`**: * **/29** means the subnet mask is `255.255.255.248`. * Network increments are by `(256 - 248) = 8` in the fourth octet. * The network address `10.10.13.160` is a valid network for /29. * The next network would be `10.10.13.160 + 8 = 10.10.13.168`. * So, the broadcast address for `10.10.13.160/29` is `10.10.13.167`. * The usable IP range is `10.10.13.161` to `10.10.13.166`. * **Does `10.10.13.214` fall in this range? No.** * **`O 10.10.13.208/29`**: * **/29** (same as above, increments of 8). * The network address `10.10.13.208` is a valid network for /29. * The next network would be `10.10.13.208 + 8 = 10.10.13.216`. * So, the broadcast address for `10.10.13.208/29` is `10.10.13.215`. * The usable IP range is `10.10.13.209` to `10.10.13.214`. * **Does `10.10.13.214` fall in this range? Yes!** * **`S* 0.0.0.0/0`**: This is the **default route** (Gateway of last resort). It matches *any* destination IP address. However, it has the shortest prefix length (`/0`), so it's only used if no more specific route matches. --- ### Comparing Matching Routes We found one specific route that matches Host A's IP address: * `10.10.13.208/29` And the default route also matches: * `0.0.0.0/0` According to the **longest prefix match** rule, Router1 will choose the most specific route, which is `10.10.13.208/29` because `/29` is a longer (more specific) prefix than `/0`. --- ### Evaluating the Options Let's check the given options: * **10.10.10.0/28**: This network is 10.10.10.0 - 10.10.10.15. Host A (10.10.13.214) is not in this range. * **10.10.13.0/25**: This network is 10.10.13.0 - 10.10.13.127. Host A (10.10.13.214) is not in this range. * **10.10.13.144/28**: This network is 10.10.13.144 - 10.10.13.159. Host A (10.10.13.214) is not in this range. * **10.10.13.208/29**: This network is 10.10.13.208 - 10.10.13.215. Host A (10.10.13.214) *is* in this range. This is the correct specific match. --- ### Conclusion Router1 will use the prefix `10.10.13.208/29` for traffic destined to Host A (10.10.13.214) because it is the most specific match (longest prefix length) in its routing table. The final answer is **10.10.13.208/29** --- ### Technical Terms Explained * **Router1:** A network device that forwards data packets between different computer networks. It uses its routing table to determine the best path for data. * **`show ip route`:** A Cisco IOS command used to display the IP routing table of a router. * **Routing Table:** A data table stored in a router or networked computer that lists the routes to particular network destinations, and in some cases, metrics (costs) associated with those routes. * **Prefix (or Network Prefix):** The portion of an IP address that identifies the network. It's often written in CIDR (Classless Inter-Domain Routing) notation as an IP address followed by a slash and a number (e.g., `10.10.13.208/29`), where the number indicates the length of the network portion in bits. * **Longest Prefix Match:** The rule that routers follow when deciding which route to use. If a destination IP address matches multiple entries in the routing table, the router chooses the entry with the longest prefix length (i.e., the most specific network definition). * **`/25`, `/28`, `/29`:** These are CIDR notations indicating the subnet mask length. * `/25` corresponds to subnet mask `255.255.255.128`. * `/28` corresponds to subnet mask `255.255.255.240`. * `/29` corresponds to subnet mask `255.255.255.248`. * **Network ID (or Network Address):** The first address in a subnet, used to identify the network itself. All host bits are 0. * **Broadcast ID (or Broadcast Address):** The last address in a subnet, used to send data to all devices within that specific network segment. All host bits are 1. * **Usable IP Range:** The range of IP addresses within a subnet that can be assigned to host devices (excluding the network ID and broadcast ID). * **Default Route (`0.0.0.0/0` or `S*`):** A special route that matches any destination IP address. It serves as a "last resort" if no more specific route for a destination is found in the routing table. The `S*` symbol in the `show ip route` output indicates a candidate default route. * **`O` (OSPF):** Indicates that the route was learned via the OSPF (Open Shortest Path First) routing protocol. * **`C` (Connected):** Indicates a directly connected network interface on the router.
日本語
## CCNA試験問題 詳細分析 この問題は、ルータがIPパケットをどのようにルーティングするか、特にルーティングテーブルと「最長一致ルール」の概念を理解しているかを問うものです。 ### 専門用語の解説 始める前に、問題と解説で使われる可能性のある専門用語を簡単に説明します。 * **IPアドレス (IP Address)**: ネットワーク上のデバイスを一意に識別するための番号。例えば、Host AのIPアドレスは `10.10.13.214` です。 * **プレフィックス (Prefix)** / **CIDR表記 (Classless Inter-Domain Routing)**: IPアドレスと、そのネットワーク部分を示すビット数を `/` の後に続けた形式です。例えば、`10.10.13.208/29` は、`10.10.13.208` がネットワークアドレスで、最初の29ビットがネットワーク部であることを示します。このビット数が多いほど、ネットワークの範囲は狭く、より具体的になります。 * **サブネットマスク (Subnet Mask)**: IPアドレスのどの部分がネットワークアドレスで、どの部分がホストアドレスかを区別するために使用される32ビットの数値です。プレフィックス長 (`/29` など) はサブネットマスクの短縮表記と考えることができます。例えば、`/29` は `255.255.255.248` に相当します。 * **ルータ (Router)**: 異なるネットワーク間(例えば、あなたの家のネットワークとインターネット)でデータパケットを転送するデバイスです。データパケットの宛先IPアドレスを見て、どの経路で転送するかを決定します。 * **ルーティングテーブル (Routing Table)**: ルータが持つ「地図帳」のようなもので、特定の宛先IPアドレスを持つパケットをどこに転送すれば良いかという情報がリストされています。 * **ネクストホップ (Next-hop)**: ルータがパケットを転送する次に到達すべきルータやデバイスのIPアドレスです。 * **最長一致ルール (Longest Match Rule)**: ルータがルーティングテーブルから適切な経路を選択する際の最も重要なルールです。宛先IPアドレスに**最も長く一致する(つまり、プレフィックス長が最も長い)**ルートが優先的に使用されます。これにより、より具体的なネットワークへの経路が、より広範囲をカバーする経路よりも優先されます。 * **直接接続 (Directly Connected)**: ルータ自身のインターフェースに直接接続されているネットワークを指します。ルーティングテーブルでは通常 `C` (Connected) で示されます。 * **OSPF (Open Shortest Path First)**: 大規模なネットワークでよく使われるルーティングプロトコルの一つです。ルーティングテーブルでは通常 `O` で示されます。 * **デフォルトルート (Default Route)**: `0.0.0.0/0` と表記され、ルーティングテーブル内に特定の宛先への経路が見つからなかった場合に「とりあえずここに送っておけばいい」という最後の手段の経路です。ルーティングテーブルでは通常 `S*` (Static Default) や `*` の記号で示されます。 ### 問題の分析 この問題では、`Router1` が `Host A` (IPアドレス: `10.10.13.214`) へのトラフィックを転送する際に、ルーティングテーブルのどのエントリ(プレフィックス)を使用するかを判断する必要があります。 #### 1. 宛先IPアドレスの特定 まず、トラフィックの最終的な宛先である `Host A` のIPアドレスを確認します。図によると、`Host A` のIPアドレスは `10.10.13.214` です。 #### 2. Router1のルーティングテーブルの確認 次に、`Router1#show ip route` コマンドの出力(ルーティングテーブル)を見て、`10.10.13.214` に一致する可能性のあるルートを探します。 ルーティングテーブルにはたくさんのエントリがありますが、`10.10.13.214` に関連すると思われるエントリに注目します。 * `10.0.0.0/8 is variably subnetted, 8 subnets, 4 masks` * この行は、`10.0.0.0` から始まるネットワークがサブネット化されていることを示しています。その下にある `10.10.13.x` のルートが Host A に関連します。 ルーティングテーブルの各エントリを見て、`10.10.13.214` がそのネットワーク範囲に含まれるかを確認し、最も長く一致するプレフィックスを探します。 1. **`C 10.10.10.0/28 is directly connected, GigabitEthernet0/0`** * このネットワークの範囲は `10.10.10.0` から `10.10.10.15` です。 * `10.10.13.214` はこの範囲に含まれません。 2. **`O 10.10.13.0/25 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0`** * プレフィックス `/25` はサブネットマスク `255.255.255.128` に相当します。 * このネットワークの範囲は `10.10.13.0` から `10.10.13.127` です。 * `10.10.13.214` はこの範囲に含まれません。 3. **`O 10.10.13.128/28 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0`** * プレフィックス `/28` はサブネットマスク `255.255.255.240` に相当します。 * このネットワークの範囲は `10.10.13.128` から `10.10.13.143` です。 * `10.10.13.214` はこの範囲に含まれません。 4. **`O 10.10.13.144/28 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0`** * プレフィックス `/28` はサブネットマスク `255.255.255.240` に相当します。 * このネットワークの範囲は `10.10.13.144` から `10.10.13.159` です。 * `10.10.13.214` はこの範囲に含まれません。 5. **`O 10.10.13.160/29 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0`** * プレフィックス `/29` はサブネットマスク `255.255.255.248` に相当します。 * このネットワークの範囲は `10.10.13.160` から `10.10.13.167` です。 * `10.10.13.214` はこの範囲に含まれません。 6. **`O 10.10.13.208/29 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0`** * プレフィックス `/29` はサブネットマスク `255.255.255.248` に相当します。 * このネットワークの範囲は `10.10.13.208` から `10.10.13.215` です。 * **`10.10.13.214` はこの範囲に含まれます!** (`208 <= 214 <= 215`) * このプレフィックス長 `/29` は、上記の他の `10.10.13.x` のルート(`/25`, `/28`)よりも長く、最も具体的なルートです。 7. **`S* 0.0.0.0/0 [1/0] via 10.10.11.2` (デフォルトルート)** * このルートはすべてのIPアドレスに一致しますが、他の具体的なルートが見つからなかった場合にのみ使用されます。 * 今回は `10.10.13.208/29` という、より具体的なルートが見つかっています。 #### 3. 最長一致ルールの適用 ルーティングテーブルの検索結果から、`10.10.13.214` という宛先IPアドレスに対して、`10.10.13.208/29` が最も長く(29ビット)一致するプレフィックスであることがわかります。最長一致ルールにより、Router1はこの `10.10.13.208/29` のルートを使用して `Host A` へのトラフィックを転送します。 ### 結論 Router1は `Host A` (`10.10.13.214`) へのトラフィックに対して、ルーティングテーブルの中から **`10.10.13.208/29`** のプレフィックスを使用します。 **正解:** 10.10.13.208/29
繁體中文
這是一個關於思科 (Cisco) 路由器如何決定將封包傳送到哪個目的地的問題,核心概念是「路由表」和「最長匹配原則」。 --- ### **問題分析與詳細解釋** **問題:** 參考圖表。Router1 會使用哪個網路字首 (prefix) 來傳輸到主機 A 的流量? **目的:** 我們需要找出 Router1 路由表中,對於目標 IP 位址 10.10.13.214 (主機 A) 最精確的路由條目。 **1. 了解路由器的運作方式 (對於初學者):** * **路由器 (Router):** 想像它是一個交通警察,負責將網路上的資料包 (封包) 從一個網路送到另一個網路。 * **路由表 (Routing Table):** 這是路由器的「地圖」。地圖上列出了到達不同目的地 (網路) 的路徑。每當路由器收到一個封包,它就會查看封包的目的地 IP 位址,然後查詢這份地圖,找出最佳路徑。 * **網路字首 (Network Prefix) / 子網路遮罩 (Subnet Mask):** 這些資訊定義了一個網路的範圍。例如,`10.10.10.0/28` 表示一個網路,其 IP 範圍是 10.10.10.0 到 10.10.10.15。斜線後面的數字 (`/28`) 叫做「字首長度 (Prefix Length)」,它告訴我們網路位址的多少位元是固定的。字首長度越長,代表網路範圍越小,也就越精確。 * **下一跳 (Next-Hop):** 路由表中通常會指明,要到達某個目的地,應該將封包發送給哪個「下一跳」路由器或哪個「介面 (Interface)」。 * **最長匹配原則 (Longest Match Rule):** 這是路由器決定最佳路徑的核心規則。當一個目的地 IP 位址可以匹配路由表中的多個網路字首時,路由器會選擇「最長」的網路字首(即字首長度最大的那個)所對應的路徑。因為字首越長,表示匹配的位元越多,路徑就越精確。 **2. 識別目標 IP 位址:** * 主機 A 的 IP 位址是:`10.10.13.214` **3. 分析 Router1 的路由表 (`show ip route` 輸出):** Router1 的路由表顯示了許多路由條目。我們需要逐一檢查哪些條目可能匹配 10.10.13.214。 首先,我們忽略那些顯然不相關的路由(例如以 209.165 開頭的 BGP 路由)。我們需要關注與 10.10.13.214 相關的條目。 讓我們看看路由表中與 `10.10.13.X` 相關的條目,並判斷 `10.10.13.214` 是否落在這些網路範圍內: * `10.0.0.0/8 is variably subnetted, 8 subnets, 4 masks`:這是一個概括性的路由,表示 10.0.0.0 到 10.255.255.255 範圍內的 IP 都會被這個條目匹配。`10.10.13.214` 顯然符合。但是,這是一個非常「不精確」的匹配。 * `O 10.10.13.0/25 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0` * 字首:`10.10.13.0/25` * 子網路遮罩:`255.255.255.128` * 網路範圍:從 `10.10.13.0` 到 `10.10.13.127` (因為 /25 意味著主機位元從第 8 位元組的第 1 位開始,因此範圍是 0-127 或 128-255)。 * `10.10.13.214` **不在**這個範圍內。 * `O 10.10.13.128/28 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0` * 字首:`10.10.13.128/28` * 子網路遮罩:`255.255.255.240` * 網路範圍:`10.10.13.128` 到 `10.10.13.143` (因為 /28 代表每個網路有 16 個 IP 位址,128+16-1=143)。 * `10.10.13.214` **不在**這個範圍內。 * `O 10.10.13.144/28 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0` * 字首:`10.10.13.144/28` * 子網路遮罩:`255.255.255.240` * 網路範圍:`10.10.13.144` 到 `10.10.13.159`。 * `10.10.13.214` **不在**這個範圍內。 * `O 10.10.13.160/29 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0` * 字首:`10.10.13.160/29` * 子網路遮罩:`255.255.255.248` * 網路範圍:`10.10.13.160` 到 `10.10.13.167` (因為 /29 代表每個網路有 8 個 IP 位址,160+8-1=167)。 * `10.10.13.214` **不在**這個範圍內。 * `O 10.10.13.208/29 [110/2] via 10.10.10.1, 00:00:04, GigabitEthernet0/0` * 字首:`10.10.13.208/29` * 子網路遮罩:`255.255.255.248` * 網路範圍:`10.10.13.208` 到 `10.10.13.215` (因為 /29 代表每個網路有 8 個 IP 位址,208+8-1=215)。 * `10.10.13.214` **在**這個範圍內!這是一個匹配。 * `S* 0.0.0.0/0 [1/0] via 10.10.11.2` * 這是一個**預設路由 (Default Route)**,通常被稱為「最後的手段」。它會匹配所有 IP 位址。如果沒有更精確的路由匹配,路由器就會使用它。 **4. 應用最長匹配原則:** 我們找到了兩個匹配 `10.10.13.214` 的路由: * `10.0.0.0/8` (字首長度為 8) * `10.10.13.208/29` (字首長度為 29) * 以及預設路由 `0.0.0.0/0` (字首長度為 0)。 根據最長匹配原則,路由器會選擇字首長度最長的那個。 在 `0/8`、`0/0` 和 `0/29` 中,字首長度 `/29` 是最長的。 因此,Router1 將會使用 `10.10.13.208/29` 這個路由條目來傳輸到主機 A (10.10.13.214) 的流量。 **5. 關於選項的檢查:** * **10.10.10.0/28:** 網路範圍是 10.10.10.0 - 10.10.10.15。不匹配 10.10.13.214。 * **10.10.13.0/25:** 網路範圍是 10.10.13.0 - 10.10.13.127。不匹配 10.10.13.214。 * **10.10.13.144/28:** 網路範圍是 10.10.13.144 - 10.10.13.159。不匹配 10.10.13.214。 * **10.10.13.208/29:** 網路範圍是 10.10.13.208 - 10.10.13.215。**匹配** 10.10.13.214。這是最精確的匹配。 ### **結論** 根據路由器的「最長匹配原則」,對於目標 IP 位址 10.10.13.214,路由表中所有匹配的條目中,`10.10.13.208/29` 具有最長的網路字首 (29 位元),因此它是 Router1 會採用的路徑。 **正確答案:10.10.13.208/29**
简体中文
这是一道关于Cisco路由器路由表查询和IP路由选择原理的CCNA考试题目。我们需要根据题目中给出的网络拓扑图、`show ip route` 命令输出以及主机IP地址,判断路由器Router1会使用哪条路由来转发发往Host A的流量。 ### 题目分析 1. **目标:** 确定Router1如何转发到达Host A(IP地址:10.10.13.214)的流量。 2. **关键信息:** * Host A的IP地址是 `10.10.13.214`。 * Router1的路由表 (`show ip route` 输出)。 ### 路由表基础知识回顾 在深入分析之前,我们先了解一下路由表中的关键要素: * **`show ip route` 命令:** 在Cisco路由器上,这个命令用于显示IP路由表的内容。路由表是路由器用于决定数据包转发路径的核心数据结构。 * **路由条目类型标识符:** * **C (Connected):** 直接连接的路由。表示路由器接口上配置的IP地址所在的网络,路由器直接连接到这个网络。 * **S\* (Static Default):** 静态默认路由。当路由器没有其他更具体的路由时,会使用此路由。通常指向一个“网络的出口”。`0.0.0.0/0` 表示匹配所有目的地。 * **O (OSPF):** OSPF协议(Open Shortest Path First)学习到的路由。OSPF是一种内部网关协议(IGP),用于在同一个自治系统(AS)内交换路由信息。 * **B (BGP):** BGP协议(Border Gateway Protocol)学习到的路由。BGP是一种外部网关协议(EGP),用于在不同的自治系统之间交换路由信息。 * **前缀 (Prefix) 或 网络地址 (Network Address):** 表示一个IP网络,通常以`网络地址/前缀长度`(CIDR表示法,如`10.10.13.0/25`)的形式出现。前缀长度(如`/25`)决定了网络的大小和范围。 * **下一跳 (Next Hop):** 数据包到达目标网络之前需要发送到的下一个路由器的IP地址。 * **度量值 (Metric) 和 管理距离 (Administrative Distance):** * **`[110/2]`** 中的 `110` 是OSPF的管理距离(Administrative Distance, AD)。管理距离是路由器用来判断不同路由源(如静态路由、OSPF、EIGRP等)之间信任度的值,数字越小越优。 * **`2`** 是OSPF的度量值(Metric),表示到达目标网络的“成本”,成本越低越优。 * **最长前缀匹配 (Longest Prefix Match):** 这是路由器进行路由选择的核心原则。当路由器收到一个数据包时,它会查找路由表中与数据包目的地IP地址匹配的网络前缀。如果有多个匹配项,路由器会选择前缀长度最长(即最具体)的那条路由。 ### 解题步骤 Host A的IP地址是 `10.10.13.214`。我们需要在Router1的路由表中找到与此IP地址最匹配(最具体)的路由条目。 1. **检查路由表中的相关条目:** Router1的路由表中有几个OSPF (`O`) 路由条目,这些条目看起来是关于`10.10.13.x`网络的子网: * `10.10.13.0/25` * `10.10.13.128/28` * `10.10.13.144/28` * `10.10.13.160/29` * `10.10.13.208/29` 2. **计算每个选项(以及相关路由条目)的网络范围,并判断 `10.10.13.214` 是否在其范围内:** * **`10.10.10.0/28` (选项 A):** * 这是一个直接连接路由(`C`),用于Router1和Switch1之间的链路。 * 网络地址:`10.10.10.0` * 子网掩码:`255.255.255.240` (因为`/28`表示有28位网络位,最后8位中的前4位是网络位,后4位是主机位,即`11110000` -> 240) * 可用IP范围:`10.10.10.1` 到 `10.10.10.14` * `10.10.13.214` 不在此范围内。 * **`10.10.13.0/25` (选项 B):** * 网络地址:`10.10.13.0` * 子网掩码:`255.255.255.128` (因为`/25`表示有25位网络位,最后8位中的第1位是网络位,后7位是主机位,即`10000000` -> 128) * 可用IP范围:`10.10.13.1` 到 `10.10.13.126` (网络地址为10.10.13.0,广播地址为10.10.13.127) * `10.10.13.214` 不在此范围内。 * **`10.10.13.128/28` (路由表中的OSPF路由):** * 网络地址:`10.10.13.128` * 子网掩码:`255.255.255.240` (`/28`) * 可用IP范围:`10.10.13.129` 到 `10.10.13.142` (网络地址10.10.13.128,广播地址10.10.13.143) * `10.10.13.214` 不在此范围内。 * **`10.10.13.144/28` (选项 C):** * 网络地址:`10.10.13.144` * 子网掩码:`255.255.255.240` (`/28`) * 可用IP范围:`10.10.13.145` 到 `10.10.13.158` (网络地址10.10.13.144,广播地址10.10.13.159) * `10.10.13.214` 不在此范围内。 * **`10.10.13.160/29` (路由表中的OSPF路由):** * 网络地址:`10.10.13.160` * 子网掩码:`255.255.255.248` (因为`/29`表示有29位网络位,最后8位中的前5位是网络位,后3位是主机位,即`11111000` -> 248) * 可用IP范围:`10.10.13.161` 到 `10.10.13.166` (网络地址10.10.13.160,广播地址10.10.13.167) * `10.10.13.214` 不在此范围内。 * **`10.10.13.208/29` (选项 D):** * 网络地址:`10.10.13.208` * 子网掩码:`255.255.255.248` (`/29`) * 可用IP范围:`10.10.13.209` 到 `10.10.13.214` (网络地址10.10.13.208,广播地址10.10.13.215) * **`10.10.13.214` 正好在此范围内!** 3. **应用最长前缀匹配原则:** 我们发现,只有 `10.10.13.208/29` 这个前缀能够精确地包含 `10.10.13.214` 这个IP地址。虽然默认路由 `0.0.0.0/0` 也能匹配所有地址,但 `/29` 比 `/0` 更具体(前缀更长),所以路由器会优先选择 `10.10.13.208/29` 这条路由。 ### 结论 根据最长前缀匹配原则,Router1会选择 `10.10.13.208/29` 这条路由来转发发往Host A(10.10.13.214)的流量。 **正确答案:** 10.10.13.208/29