1 / 22

实验 1 介绍

实验 1 介绍. 实验名称:静态路由 实验设备: R26 路由器 2 台 实验目的: 通过静态路由,使路由器和三层交换机具有非直连子网的路由信息,进而实现非直连子网的互相通信。 实验时间: 45 分钟. 理论介绍. 配置静态路由. router(config)#ip route [ 网络编号 ] [ 子网掩码 ] [ 转发路由器的 IP 地址 / 本地接口 ]. 理论介绍. 配置静态路由示例. 172.16.1.0. S0. 网络. 10.0.0.0. A. B. B. 172.16.2.2. 172.16.2.1.

druce
Download Presentation

实验 1 介绍

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 实验1介绍 • 实验名称:静态路由 • 实验设备: R26路由器2台 • 实验目的:通过静态路由,使路由器和三层交换机具有非直连子网的路由信息,进而实现非直连子网的互相通信。 • 实验时间:45分钟

  2. 理论介绍 配置静态路由 router(config)#ip route [网络编号] [子网掩码] [转发路由器的IP地址/本地接口]

  3. 理论介绍 配置静态路由示例 172.16.1.0 S0 网络 10.0.0.0 A B B 172.16.2.2 172.16.2.1 router(config)#ip route 172.16.1.0 255.255.255.0 172.16.2.1 或 router(config)#ip route 172.16.1.0 255.255.255.0 serial 0

  4. 实验拓扑 172.16.1.0/24 172.16.2.0/24 172.16.3.0/24 F1 F0 F0 F1 PC2 A B B PC1 A A .2 .2 .22 .1 B .11 • 描述:假设校园网通过路由器R26路由器连接到外网的一台主机PC3,路由器与路由器连接用各自的F1接口,现要实现PC1与PC2的相互通信

  5. 实验步骤 路由器R1+的配置: 1.配置路由器主机名 Red-Giant>enable(注:从用户模式进入特权模式) Red-Giant#configure terminal(注:从特权模式进入全局配置模式) Red-Giant(config)#hostname R1(注:将主机名配置为“R1”) R1(config)# 172.16.1.0/24 172.16.2.0/24 172.16.3.0/24 F1 F0 PC2 A B B PC1 A A .2 .2 .22 .1 B .1 .11

  6. 实验步骤 2.为路由器各接口分配IP地址 R1(config)#interface fastethernet 1 注:进入路由器fastethernet 1的接口配置模式 R1(config-if)#ip address 172.16.3.2 255.255.255.0 注:设置路由器fastethernet 1的IP地址为172.16.3.2,对应的子网掩码为255.255.255.0 R1(config-if)#no shut 注:手工打开物理接口。 R1(config)#interface fastethernet 0 注:进入路由器fastethernet 0的接口配置模式 R1(config-if)#ip address 172.16.2.2 255.255.255.0 注:设置路由器fastethernet 0的IP地址为172.16.2.2,对应的子网掩码为255.255.255.0 R1(config-if)#no shut 注:手工打开物理接口。

  7. 实验步骤 3.配置静态路由: R1(config)#ip route 172.16.1.0 255.255.255.0 172.16.2.1 或: R1(config)#ip route 172.16.1.0 255.255.255.0 f1

  8. 实验步骤 路由器R2的配置: 1.配置路由器主机名 Red-Giant>enable(注:从用户模式进入特权模式) Red-Giant#configure terminal(注:从特权模式进入全局配置模式) Red-Giant(config)#hostname R2(注:将主机名配置为“R2”) R2 (config)# 172.16.1.0/24 172.16.2.0/24 172.16.3.0/24 F1 F1 F0 F0 PC2 A B B PC1 A A .2 .2 .22 .1 B .1 .11

  9. 实验步骤 2.为路由器各接口分配IP地址 R2 (config)#interface fastethernet 1 注:进入路由器fastethernet 1的接口配置模式 R2 (config-if)#ip address 172.16.2.1 255.255.255.0 注:设置路由器fastethernet 1的IP地址为172.16.2.1,对应的子网掩码为255.255.255.0 R2(config-if)#no shut 注:手工打开物理接口。 R2(config)#interface fastethernet 0 注:进入路由器fastethernet 0的接口配置模式 R2(config-if)#ip address 172.16.1.1 255.255.255.0 注:设置路由器fastethernet 0的IP地址为172.16.1.1,对应的子网掩码为255.255.255.0 R2(config-if)#no shut 注:手工打开物理接口。

  10. 实验步骤 3.配置静态路由: R2(config)#ip route 172.16.3.0 255.255.255.0 172.16.2.2 或: R2(config)#ip route 172.16.3.0 255.255.255.0 f1

  11. 测试结果 • 两台路由器应该看到全网路由。 • 主机172.16.3.22能够访问主机172.16.1.11。

  12. 验证命令 • show run • show int • show ip int brief • show ip route • ping • telnet

  13. 注意事项 • 配置静态路由时ip route后面接该路由器不直连且欲访问的子网地址及子网掩码。

  14. 实验(2)介绍 • 实验名称:默认路由 • 实验设备: R26系列(2台) • 实验目的:对于所有没有具体路由选择信息的计算机网络,通过默认路由,可以使路由器之间知道如何传递数据包,进而实现计算机网络通信。 • 实验时间:30分钟

  15. 实验拓扑 172.16.1.0/24 172.16.2.0/24 172.16.3.0/24 F1 F0 F0 F1 PC2 A B B PC1 A A .2 .2 .22 .1 B .11 • 描述:假设校园网通过路由器R1+连接到外网的一台主机PC3,路由器与路由器连接用各自的F1接口,现要实现PC1与PC2的相互通信

  16. 理论介绍—默认路由(缺省路由) Internet 上 大约99.99%的路由器上都存在一条缺省路由! 172.16.1.0 SO 网络 0.0.0.0 A B B 172.16.2.2 172.16.2.1 router(config)#ip route 0.0.0.0 0.0.0.0 172.16.2.2 (注:默认路由可以看作是静态路由的一种特殊情况)

  17. 实验拓扑 172.16.1.0/24 172.16.2.0/24 172.16.3.0/24 F1 F0 F0 F1 PC2 A B B PC1 A A .2 .2 .22 .1 B .11 (注:本实验与实验(1)中配置的差别仅在于最后对于路由的配置不同,除此之外其它均相同,故以下的配置仅仅列出了路由部分的配置)

  18. 实验步骤 路由器上的默认路由配置: R1(config)#ip route 0.0.0.0 0.0.0.0 172.16.2.1 或: R1(config)#ip route 0.0.0.0 0.0.0.0 f1

  19. 实验步骤 R2的默认路由配置: • R2(config)#ip route 0.0.0.0 0.0.0.0172.16.2.2 • 或: • R2(config)#ip route 0.0.0.0 0.0.0.0f1

  20. 测试结果 • 两台路由器应该看到全网路由。 • 主机172.16.3.22能够访问主机172.16.1.11。

  21. 验证命令 • show run • show int • show ip int brief • show ip route • ping • telnet

  22. 注意事项 • 默认路由配置中是用8个0,即ip地址及子网掩码全为0。

More Related