当前位置: 代码迷 >> 综合 >> eNSP | 静态路由配置3
  详细解决方案

eNSP | 静态路由配置3

热度:47   发布时间:2023-12-01 16:41:42.0

目录

一、如下图拓扑结构的搭建

?二、IP地址的配置

(一)检查配置的IP是否有错

三、静态路由配置

四、查看与测试

(一)查看R1的路由表

(二)测试连通性


一、如下图拓扑结构的搭建

二、IP地址的配置

 

interface GigabitEthernet     接口号                              //进入接口

ip  address    ip地址   子网掩码                                    //为接口配置IP和子网掩码

(一)检查配置的IP是否有错

 display   ip  interface  brief                         //查看路由器所有接口配置的IP地址

R1

R2

.........

 

三、静态路由配置

R1

如下图,R1要访问其它网段设备需要经过的路线有4条,所以要写4条静态路由

[R1]ip route-static 23.1.1.0 24 12.1.1.2
[R1]ip route-static 172.168.1.0 24 172.168.1.10
[R1]ip route-static 192.168.2.0 24 12.1.1.2
[R1]ip route-static 192.168.2.0 24 172.168.1.10


R2

[R2]ip route-static 192.168.1.0 24 12.1.1.1
[R2]ip route-static 192.168.2.0 24 23.1.1.4
[R2]ip route-static 172.168.1.0 24 12.1.1.1
[R2]ip route-static 172.168.2.0 24 23.1.1.4


R3

[R3]ip route-static 12.1.1.0 24 23.1.1.3
[R3]ip route-static 172.168.1.0 24 172.168.2.10
[R3]ip route-static 192.168.1.0 24 23.1.1.3
[R3]ip route-static 192.168.1.0 24 172.168.2.10


R4

[R4]ip route-static 192.168.1.0 24 172.168.1.5
[R4]ip route-static 192.168.2.0 24 172.168.2.5
[R4]ip route-static 12.1.1.0 24 172.168.1.5
[R4]ip route-static 23.1.1.0 24 172.168.2.5

四、查看与测试

(一)查看R1的路由表

R1

我们可以发现,前面三条是我们配置的静态路由。

我们发现红色框里的没有IP地址,这是因为红框里去的目的地址和它上一条去的是同一个目的地。而且它们两个的开销和优先级都相同,只有当上一条线路断掉是才会出现。


R2

因为R2去的个目的地都不相同所以有四条

...........


(二)测试连通性

PC2  ping  PC1 (通)


R4 ping  PC1 (通)

......

测试发现每台设备都是相通的。