码迷,mamicode.com
首页 > 其他好文 > 详细

网络(思科)——静态路由

时间:2019-01-17 23:39:42      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:gate   ado   技术分享   ima   int   图片   netmask   process   water   

技术分享图片

思科模拟器中配置静态路由:

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

网络(思科)——静态路由

标签:gate   ado   技术分享   ima   int   图片   netmask   process   water   

原文地址:http://blog.51cto.com/14037369/2343934

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!