网络(思科)——静态路由
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网络(思科)——静态路由相关的知识,希望对你有一定的参考价值。
思科模拟器中配置静态路由:
pc1:
ip: 10.10.30.10
netmask: 24
gateway: 10.30.10.1
pc2:
ip: 10.10.40.10
netmask: 24
gateway: 10.30.40.1
Router1:
f0/0: 10.10.10.1/24
f0/1: 10.10.20.1/24
Router2:
f0/0: 10.10.10.2/24
f0/1: 10.10.30.1/24
Router3:
f0/0: 10.10.20.2/24
f0/1: 10.10.40.1/24
Router1配置:
> en
# conf t
# int f0/0
# ip ad 10.10.10.1 255.255.255.0
# no sh
# int f0/1
# ip ad 10.10.20.1 255.255.255.0
# no sh
# e
# ip route 10.10.30.0 255.255.255.0 10.10.10.2
# ip route 10.10.40.0 255.255.255.0 10.10.20.2
Router2配置:
> en
# conf t
# int f0/0
# ip ad 10.10.10.2 255.255.255.0
# no sh
# int f0/1
# ip ad 10.10.30.1 255.255.255.0
# no sh
# e
# ip route 10.10.20.0 255.255.255.0 10.10.10.1
# ip route 10.10.40.0 255.255.255.0 10.10.10.1
Router3配置:
> en
# conf t
# int f0/0
# ip ad 10.10.10.2 255.255.255.0
# no sh
# int f0/1
# ip ad 10.10.30.1 255.255.255.0
# no sh
# e
# ip route 10.10.10.0 255.255.255.0 10.10.20.1
# ip route 10.10.30.0 255.255.255.0 10.10.20.1
CSDN原文链接:https://blog.csdn.net/qq_34889607/article/details/86529755
以上是关于网络(思科)——静态路由的主要内容,如果未能解决你的问题,请参考以下文章