项目拓扑
项目拓扑如图:
需求分析
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。
方案步骤
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
|
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
|
方案测试
测试结果如图:
项目扩展
注意:查询 IP 路由表,在特权模式下执行上面命令。
本文链接:https://my.lmcjl.com/post/19589.html
4 评论