抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

静态路由是一种路由的方式,路由项由手动配置,而非动态决定。静态路由是固定的,不会改变,即使网络状况已经改变或者是重新被组态。一般来说,静态路由是由网络管理员逐项加入路由表。

项目拓扑

项目拓扑如图:

需求分析

PC2 可以 Ping 通 PC1。

Router0 只知道两个网段,分别是 192.168.1.0/192.168.2.0。Router1 只知道两个网段,分别是 192.168.2.0/192.168.3.0。所以如果想要 PC2 可以 Ping 通 PC1,必须告诉 0 路由器 192.168.3.0 的走向,并且因为需要回包,所以 1 路由器需要知道 192.168.1.0 的走向。

项目方案

通过静态路由实现。

分别配置好 PC1/PC2 的 IP。

方案步骤

  • RouterA 路由器:
1
2
3
4
5
6
7
8
9
10
11
Continue with configuration dialog? [yes/no]: no
Router>enable
Router#configure terminal
Router(config)#ip route 192.168.3.0 255.255.255.0 fastEthernet 0/1
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface fastEthernet 0/1
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#no shutdown
  • RouterB 路由器:
1
2
3
4
5
6
7
8
9
10
11
Continue with configuration dialog? [yes/no]: no
Router>enable
Router#configure terminal
Router(config)#ip route 192.168.1.0 255.255.255.0 fastEthernet 0/0
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 192.168.2.2 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface fastEthernet 0/1
Router(config-if)#ip address 192.168.3.1 255.255.255.0
Router(config-if)#no shutdown

方案测试

测试结果如图:

项目扩展

1
show ip route

注意:查询 IP 路由表,在特权模式下执行上面命令。

评论