赞
踩
静态路由实验,建立拓扑pc1>>R1>>R2>>R3>>pc2,使pc1与pc2能相互通信。
设备 | 接口 | ip地址 |
AR1 | G0/0/0 | 192.168.10.254/24 |
G0/0/1 | 12.1.1.1/24 | |
AR2 | G0/0/0 | 12.1.1.2/24 |
G0/0/1 | 23.1.1.2/24 | |
AR3 | G0/0/0 | 23.1.1.3/24 |
G0/0/1 | 192.168.20.254/24 | |
PC1 | 192.168.10.1/24 | |
PC2 | 192.168.20.254 |
配置ip地址的实例:
<code class="language-plaintext hljs">[r1]int g0/0/0
[r1-GigabitEthernet0/0/0]ip ad
[r1-GigabitEthernet0/0/0]ip address 23.1.1.3 24</code>
R1:
<code class="language-plaintext hljs">[r1]ip route-static 192.168.20.0 255.255.255.0 12.1.1.2</code>
R2:
<code class="language-plaintext hljs">[R2]ip route-static 192.168.10.0 255.255.255.0 12.1.1.1
[R2]ip route-static 192.168.20.0 255.255.255.0 23.1.1.3 </code>
R3:
<code class="language-plaintext hljs">[R3]ip route-static 192.168.10.0 255.255.255.0 23.1.1.2</code>
PC1:
PC2:
ping测试:
实验成功:pc1和pc2可以通过静态路由协议进行通信
附:路由表展示:
AR1:
AR2:
AR3:
注:以上所示的路由表是实验成功的关键
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。