路由汇总的子网掩码不正确

网络工程 思科 路由 路由器 数据包追踪器 路由汇总
2021-07-06 02:33:46

我正在学习路由汇总以及它如何用单个地址和单个子网掩码表示不同的子网,

例如,

如果我有两个子网,

10.1.1.0 
10.1.2.0 

带有子网掩码的汇总子网是,

10.1.0.0/22

这是因为,两个网络中的两个左八位字节相同,而两个网络中的6位也相同,所以,

8 + 8 + 6 = 22

现在,如果我尝试在 Packet Tracer 中实现它,

在此处输入图片说明

show ip route在路由器上输入命令,然后它会给出以下输出,

Router#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/24 is subnetted, 2 subnets
C       10.1.1.0 is directly connected, FastEthernet0/0
C       10.1.2.0 is directly connected, FastEthernet0/1

现在,在倒数第三行它说,

     10.0.0.0/24 is subnetted, 2 subnets

我的问题是,为什么汇总地址是10.0.0.0/24而不是10.1.0.0/22. ?

1个回答

这是因为它们在 10.0.0.0 网络中,并且它们被划分为 /24 子网。您没有看到路线摘要。如果您将一个子网划分为与另一个不同的子网,例如 /25,您会得到如下结果:

     10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C       10.1.1.0/25 is directly connected, FastEthernet0/0
C       10.1.2.0/24 is directly connected, FastEthernet0/1