华为交换机eNSP直连路由和静态路由实验报告实验报告

  • 路由信息获取的方式
  • 直连路由
  • 静态路由
  • 动态路由
  • 实验一:直连路由
  • 实验二:静态路由


路由信息获取的方式

直连路由

直连路由是最简单和最直接的路由类型之一。当两台设备直接连接在一起,并且它们位于同一子网上时,它们就可以通过直连路由进行通信。在这种情况下,设备会将数据包直接发送到目标设备,因为它们已经知道目标设备就在同一网络上。

特点:

直连路由是静态定义的,不需要额外的路由协议。
通常用于局域网内的通信。
在路由表中,直连路由的下一跳地址通常是目标设备的IP地址。

静态路由

静态路由是由网络管理员手动配置的路由。管理员明确指定了网络包应该经过的路径。这种类型的路由对于简单网络布局或需要控制流量的情况非常有用。

特点:

静态路由是手动配置的,不会自动更新或调整。
管理员需要指定目标网络和下一跳路由器。
适用于小型网络,对于固定的网络布局非常有用。

动态路由

动态路由是通过路由协议动态学习和更新的路由。路由器之间会交换路由信息,并根据网络拓扑和最佳路径选择来更新路由表。

特点:

动态路由是自动配置和管理的,可以自动适应网络拓扑的变化。
常见的动态路由协议包括OSPF(开放最短路径优先)、RIP(路由信息协议)、BGP(边界网关协议)等。
在大型网络中,动态路由通常比静态路由更具优势,因为它们可以动态调整路由并适应网络变化。
在实际网络环境中,通常会结合使用这些不同类型的路由来构建复杂的网络架构,以满足特定的需求和性能要求。

ensp ospf直连路由 ensp引入直连路由_IP

实验一:直连路由

ensp ospf直连路由 ensp引入直连路由_华为_02


在没有配置直连路由的情况下PC3无法与PC4通信

ensp ospf直连路由 ensp引入直连路由_ensp ospf直连路由_03

127.0.0.0/8:这是本地环回地址范围。
127.0.0.1/32:这是本地主机的本地环回地址。
由于这些都是本地环回地址,它们的下一跳地址是本地环回接口(InLoopBack0),意味着数据包将被发送到本地主机。

Interface:接口名称。
IP Address/Mask:接口的IP地址和子网掩码。如果没有配置IP地址,则显示为"unassigned"。
Physical Status:物理状态,表示接口是否连接。
Protocol Status:协议状态,表示接口是否启用IP协议。

<Huawei>display ip interface brief # 显示华为路由器上所有IP接口的摘要信息
*down: administratively down
!down: FIB overload down
^down: standby
(l): loopback
(s): spoofing
(d): Dampening Suppressed
The number of interface that is UP in Physical is 4
The number of interface that is DOWN in Physical is 7
The number of interface that is UP in Protocol is 1
The number of interface that is DOWN in Protocol is 10

Interface                         IP Address/Mask      Physical   Protocol  
Ethernet0/0/0                     unassigned           down       down      
Ethernet0/0/1                     unassigned           down       down      
GigabitEthernet0/0/0              unassigned           up         down      
GigabitEthernet0/0/1              unassigned           up         down      
GigabitEthernet0/0/2              unassigned           down       down      
GigabitEthernet0/0/3              unassigned           up         down      
NULL0                             unassigned           up         up(s)     
Serial0/0/0                       unassigned           down       down      
Serial0/0/1                       unassigned           down       down      
Serial0/0/2                       unassigned           down       down      
Serial0/0/3                       unassigned           down       down      
<Huawei>system-view 
//分别给路由器设置三个接口的网关
[Huawei]interface GigabitEthernet0/0/0
[Huawei-GigabitEthernet0/0/0]ip address 192.168.1.254 24 
[Huawei]interface GigabitEthernet0/0/1	
[Huawei-GigabitEthernet0/0/1]ip address 172.16.2.254 24
[Huawei-GigabitEthernet0/0/1]quit 
[Huawei]interface GigabitEthernet0/0/3
[Huawei-GigabitEthernet0/0/3]ip address 12.3.3.1 24
[Huawei-GigabitEthernet0/0/3]quit
[Huawei]display ip interface brief
*down: administratively down
!down: FIB overload down
^down: standby
(l): loopback
(s): spoofing
(d): Dampening Suppressed
The number of interface that is UP in Physical is 4
The number of interface that is DOWN in Physical is 7
The number of interface that is UP in Protocol is 4
The number of interface that is DOWN in Protocol is 7

Interface                         IP Address/Mask      Physical   Protocol  
Ethernet0/0/0                     unassigned           down       down      
Ethernet0/0/1                     unassigned           down       down      
GigabitEthernet0/0/0              192.168.1.254/24     up         up        
GigabitEthernet0/0/1              172.16.2.254/24      up         up        
GigabitEthernet0/0/2              unassigned           down       down      
GigabitEthernet0/0/3              12.3.3.1/24          up         up        
NULL0                             unassigned           up         up(s)     
Serial0/0/0                       unassigned           down       down      
Serial0/0/1                       unassigned           down       down      
Serial0/0/2                       unassigned           down       down      
Serial0/0/3                       unassigned           down       down

配置两台电脑的ip、子网掩码、网关

ensp ospf直连路由 ensp引入直连路由_网络_04


ensp ospf直连路由 ensp引入直连路由_静态路由_05


测试两台电脑是否可以通信

ensp ospf直连路由 ensp引入直连路由_网络_06

实验二:静态路由

同理接着配置下面的路由器

<Huawei>system-view 
[Huawei]undo info en
Info: Information center is disabled.
[Huawei]interface GigabitEthernet0/0/3
[Huawei-GigabitEthernet0/0/3]ip address 12.3.3.2 24
[Huawei-GigabitEthernet0/0/3]quit
[Huawei]interface GigabitEthernet0/0/0
[Huawei-GigabitEthernet0/0/0]ip address 10.1.3.254 24
[Huawei-GigabitEthernet0/0/0]quit

ensp ospf直连路由 ensp引入直连路由_网络_07


由于不是直连所以R3不知道往哪转发路由,虽然配置了接口ip但是也访问不通过PC3和PC4.

分配配置两台交换机的静态路由表

[R2]ip route-static 10.1.3.0 24 12.3.3.2

[R3]ip route-static 192.168.1.0 24 12.3.3.1

告诉R2如何去10.1.3.0 告诉R3如何去192.168.1.0 中间是子网掩码

ip route-static   目标IP    子网掩码    吓一跳路由器入口IP

ensp ospf直连路由 ensp引入直连路由_华为_08


ensp ospf直连路由 ensp引入直连路由_ensp ospf直连路由_09


现在两个网络之间就可以互相通信了。

同理配置PC4 所在的网段

[R3]ip route-static 172.16.2.0 24 12.3.3.1

ensp ospf直连路由 ensp引入直连路由_ensp ospf直连路由_10


这样就实现了静态路由的配置。