Microsoft Word - CCNA Lab Exercise Guide.doc

Size: px
Start display at page:

Download "Microsoft Word - CCNA Lab Exercise Guide.doc"

Transcription

1 CISCO CERTIFIED NETWORK ASSOCIATE LAB GUIDE 思科认证网络工程师完全实验手册 作者红头发 CCIE#

2 -2-

3 -3-

4 -4-

5 -5-

6 第一章基础篇 实验一 - 路由器基本设置 Lab Exercise 1.1 熟练掌握如何进入路由器各种模式并设置主机名. Cisco 2501 路由器一台. 1. 从路由器用户模式进入特权模式 : Aiko>enable 2. 从特权模式进入全局配置模式 : configure terminal 3. 为路由器设置主机名 : Aiko(config)#hostname {hostname} 4. 退出到特权模式 : Aiko(config)#end 5. 退出到用户模式 : disable 6. 退出控制台线路 : Aiko>quit 解释 : 路由器的模式大致可分为 : 1. 用户模式 : 权限最低, 通常只能使用少量查看性质的命令. 2. 特权模式 : 可以使用更多查看性质的命令和一些少量修改路由器参数的命令. 3. 全局配置模式 : 不能使用查看性质的命令, 但是确实做全局性修改和设置的模式, 它还可以向下分为一些子模式, 比如接口配置模式, 线路配置模式, 路由进程配置模式等等. 配置实例一 : Router>enable Router#configure terminal Router(config)#hostname Aiko Aiko(config)#exit *Mar 1 00:04:30.815: %SYS-5-CONFIG_I: Configured from console by console disable Aiko> -6-

7 Lab Exercise 1.2 熟练掌握如何为路由器设置时间. Cisco 2501 路由器一台. 在特权模式下设置路由器时间 : clock set {hh:mm:ss day month year} 解释 : 路由器本地的时间标识. 配置实例一 : clock set 16:16:16 25 September 2005 show clock 16:16: UTC Sun Sep Lab Exercise 1.3 熟练掌握如何设置空闲超时时间. Cisco 2501 路由器一台 1. 从全局配置模式进入线路配置模式, 进入控制台口线路 : Aiko(config)#line console {number} 2. 启用光标跟随 : Aiko(config-line)#logging synchronous 3. 设置当键盘多少时间内无动作, 自动被路由器弹出到用户模式以外, 即退出. 如果设置为 0 分 0 秒代表永不超时 : Aiko(config-line)#exec-timeout {minute} {second} 解释 : 所谓光标跟随, 是指当我们在输入命令的时候, 不会被一些日志信息或 debug 命令产生的调试命令所冲断. 模式该特性是没有启用的. 配置实例一 : Aiko(config)#exit -7-

8 *Mar 1 00:20:11.231: %SYS-5-CONFIG_I: Configured from console by consoleconfigure terminal Aiko(config)#line console 0 Aiko(config-line)#logging synchronous Aiko(config-line)#end *Mar 1 00:20:38.123: %SYS-5-CONFIG_I: Configured from console by console configure terminal Aiko(config)# 配置实例二 : show clock *15:32: UTC Mon Jul configure terminal Aiko(config)#line console 0 Aiko(config-line)#exec-timeout 20 0 Aiko(config)#end exit *Mar 1 00:24:33.643: %SYS-5-CONFIG_I: Configured from console by console show clock *15:52: UTC Mon Jul Aiko con0 is now available Press RETURN to get started. Aiko> Lab Exercise 1.4 熟练掌握如何为路由器设置标语信息和描述信息. Cisco 2501 路由器一台. 1. 进入全局配置模式, 设置标语信息 : Aiko(config)#banner motd # {text} # 2. 进入接口配置模式 : Aiko(config-if)#interface {type} {number} -8-

9 3. 为路由器接口设置描述信息 : Aiko(config-if)#description {text} 解释 : 在设置标语信息的时候, 以 # 号做为分隔符, 并按下回车键. 描述语句的本地的一个标识, 它只在本地可见, 并 且 Cisco IOS 执行命令的时候会跳过它. 配置实例一 : Aiko(config)#banner motd # Enter TEXT message. End with the character '#'. hello! # Aiko(config)#end exit Aiko con0 is now available Press RETURN to get started. hello! Aiko> 配置实例二 : Aiko(config-if)#description LAN Sales Aiko(config-if)#end *Mar 1 02:05:48.919: %SYS-5-CONFIG_I: Configured from console by console show running-config interface ethernet 0 Building configuration... Current configuration : 75 bytes! interface Ethernet0 description LAN Sales no ip address shutdown end Lab Exercise 1.5 熟练掌握如何为路由器特权模式设置密码. -9-

10 Cisco 2501 路由器一台. 进入全局配置模式, 设置密码 : Aiko(config)#enable {password secret} {password} 解释 : 两种密码的区别在于, 前者是一些低版本 Cisco IOS 软件的认证方式, 并且密码是基于明文的 ; 后者是目前 Cisco IOS 软件最常用的认证方式, 它是基于 MD5 加密的. 如果同时设置了这两种认证方式, 他们的口令必须不一样. 但是, 我们推荐使用后者进行认证, 并且如果同时设置了两种认证方式, 只有后者生效. 密码区分大小写. 配置实例一 : Aiko(config)#enable password Aiko Aiko(config)#enable secret Aiko The enable secret you have chosen is the same as your enable password. This is not recommended. Re-enter the enable secret. Aiko(config)#enable secret Asuqa Aiko(config)#exit *Mar 1 02:16:48.067: %SYS-5-CONFIG_I: Configured from console by console exit Aiko con0 is now available Press RETURN to get started. Aiko>enable Password:Asuqa show running-config Building configuration... Current configuration : 609 bytes! version 12.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption! hostname Aiko! -10-

11 logging queue-limit 100 enable secret 5 $1$NTU5$EEYi0qfB1pGENzuPxDCyz. enable password Aiko! --More-- Lab Exercise 1.6 熟练掌握如何为路由器各个配置模式设置密码. Cisco 2501 路由器一台. 1. 从全局配置模式进入线路配置模式, 进入控制台口线路 : Aiko(config)#line {console aux vty} {start-number} [end-number] 2. 设置密码 : Aiko(config-line)#password {password} 3. 启用登陆 : Aiko(config-line)#login 解释 : 当设置密码之后, 如果不启用登陆命令, 退出之后, 路由器是不会提示输入密码的. 控制台线路密码为控制台线路所用 ; 辅助接口 (AUX) 线路密码为辅助接口线路所用 ; 虚拟终端线路 (VTY) 是为 telnet 会话所用, 路由器根据 Cisco IOS 软件版本不同, 支持多条 VTY 会话数目也不同. 所有密码是以明文方式保存在 DRAM(running-config) 文件里的. 配置实例一 : Aiko(config)#line console 0 Aiko(config-line)#password Aiko Aiko(config-line)#login Aiko(config-line)#line aux 0 Aiko(config-line)#password Aiko Aiko(config-line)#login Aiko(config-line)#exit Aiko(config)#line vty 0 4 Aiko(config-line)#password Aiko Aiko(config-line)#login Aiko(config-line)#end *Mar 1 03:04:43.491: %SYS-5-CONFIG_I: Configured from console by console exit Aiko con0 is now available -11-

12 Press RETURN to get started. User Access Verification Password:Aiko Aiko> Lab Exercise 1.7 熟练掌握如何为路由器关闭 DNS 查询功能. Cisco 2501 路由器一台. 全局配置模式下, 关闭 DNS 查询功能 : Aiko(config)#no ip domain lookup 解释 : 默认情况下, 路由器的 DNS 查询是启用的, 即当你错误的输入一条 Cisco IOS 软件无法识别的命令的时候, 路由器会把这个命令当成主机名, 然后向 DNS 服务器进行查询. 一般实验性的环境中, 如果我们没有 DNS 服务器, 因为输入错误的命令而造成无用的查询, 是非常耗时的. 因此我们可以关闭这一功能. 配置实例一 : Aiko Translating "Aiko"...domain server ( ) Translating "Aiko"...domain server ( ) Translating "Aiko"...domain server ( ) % Unknown command or computer name, or unable to find computer address configure terminal Aiko(config)#no ip domain lookup Aiko(config)#end *Mar 1 03:13:12.371: %SYS-5-CONFIG_I: Configured from console by console Aiko Translating "Aiko" % Unknown command or computer name, or unable to find computer address 实验二 - 路由器连通性设置 -12-

13 Lab Exercise 2.1 熟练掌握如何连通路由器并进行相互间 ping 和 telnet 的测试. Cisco 2501 路由器两台. 1. 进入接口配置模式 : Aiko(config)#interface {type} {number} 2. 为接口设置 IP 地址信息 : Aiko(config-if)#ip address {ip-address} {mask} 3. 根据需要, 如果接口为串行接口, 要为 DCE 端设置时钟频率 : Aiko(config-if)#clock rate {speed} 4. 开启接口 : Aiko(config-if)#no shutdown 解释 : 默认所有接口都是处于关闭状态的, 对于一般的以太网接口, 设置了 IP 地址信息之后, 只需要开启该接口即可 ; 对于串行接口, 还要注意在 DCE 端设置时钟频率, 以便为 DTE 端提供时钟频率进行同步. 当然这一般用于实验室背对背环境中, 真正现实环境中,DCE 是由 CSU/DSU 来提供, 无须用户设置. 另外要注意的是, 端到端 (end-to-end) 的连接, 直连的接口必须处于同一子网. 配置实例一 : 路由器 Aiko 配置如下 : configure terminal Aiko(config)#interface serial 0 Aiko(config-if)#ip address Aiko(config-if)#no shutdown *Mar 1 00:13:45.839: %LINK-3-UPDOWN: Interface Serial0, changed state to down Aiko(config-if)#end *Mar 1 00:14:24.511: %LINK-3-UPDOWN: Interface Serial0, changed state to up *Mar 1 00:14:25.515: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up 路由器 Asuqa 配置如下 : -13-

14 configure terminal Asuqa(config)#interface serial 0 Asuqa(config-if)#ip address Asuqa(config-if)#clock rate Asuqa(config-if)#no shutdown Asuqa(config-if)#end Sep 25 16:24:25.347: %SYS-5-CONFIG_I: Configured from console by console Sep 25 16:24:25.787: %LINK-3-UPDOWN: Interface Serial0, changed state to up Sep 25 16:24:26.791: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up 测试一 : ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 ms ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 ms 测试二 : telnet Trying Open Password required, but none set [Connection to closed by foreign host] 解释 : 在 telnet 到远端路由器的时候, 如果对方的 VTY 线路没有设置密码和启用登陆, 将拒绝本地路由器 telnet. -14-

15 解决方案 : 是在远端路由器设置 VTY 线路的密码和启用登陆. 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#line vty 0 4 Asuqa(config-line)#password Aiko Asuqa(config-line)#login Asuqa(config-line)#end 测试三 : telnet Trying Open User Access Verification Password:Aiko Asuqa>exit [Connection to closed by foreign host] Lab Exercise 2.2 熟练掌握如何创建主机列表, 并使用 ping 和 telnet 测试. Cisco 2501 路由器两台. 准备工作 : 确保两台路由器已经预先的端到端的连通. 全局配置模式下创建静态的 IP 地址到主机名的映射 : Aiko(config)#ip host {hostname} {ip-address} 配置实例一 : 路由器 Aiko 配置如下 : Aiko(config)#ip host Asuqa Aiko(config)#end -15-

16 测试一 : Asuqa Trying Asuqa ( )... Open User Access Verification Password:Aiko Asuqa>exit [Connection to Asuqa closed by foreign host] 测试二 : ping Asuqa Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/40/48 ms 实验三 - 路由器恢复性设置 Lab Exercise 3.1 熟练掌握如何快速和恢复路由器到出厂设置. Cisco 2501 路由器一台. 准备工作 : 确保路由器之间有所配置. 1. 进入全局配置模式, 快速恢复路由器的接口配置到出厂配置 : Aiko(config)#default interface {type} {number} 2. 特权模式下删除启动配置文件, 路由器下次启动将全局恢复到出厂设置 : erase startup-config 配置实例一 : show running-config interface serial 0-16-

17 Building configuration... Current configuration : 62 bytes! interface Serial0 ip address end configure terminal Aiko(config)#default interface serial 0 Building configuration... Interface Serial0 set to default configuration Aiko(config)#end show running-config interface serial 0 Building configuration... Current configuration : 40 bytes! interface Serial0 no ip address end Lab Exercise 3.2 熟练掌握如何重启路由器和计划性的重启路由器. Cisco 2501 路由器一台. 在特权模式下, 重启或计划性的重启路由器 : reload [at {hh:mm day year} in {minutes}] [text] 解释 : 可以定义路由器, 立即重启或在多少分钟之后, 或在具体的时间里重启, 还可以指定重启原因. 如果在重启之 前, 路由器配置文件被修改过, 系统会提醒你是否保存修改. 配置实例一 : reload in 1 the Administrator's mad -17-

18 System configuration has been modified. Save? [yes/no]: n Reload scheduled in 56 seconds Reload reason: the Administrator's mad Proceed with reload? [confirm] *Mar 1 00:50:49.787: %SYS-5-SCHEDULED_RELOAD: Reload requested for 00:51:42 UTC Mon Mar at 00:50:42 UTC Mon Mar by console. Reload Reason: the Administrator's mad. 测试 : show reload Reload scheduled in 47 seconds by console Reload reason: the Administrator's mad *** *** --- SHUTDOWN NOW --- *** -18-

19 第二章路由篇 实验一 - 静态路由基本配置 Lab Exercise 1.1 熟练掌握如何配置静态路由. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 进入全局配置模式, 定义目标网络号, 目标网络的子网掩码和下一跳地址或接口 : Aiko(config)#ip route {network} {mask} {next-hop-address exit-interface} [distance] 解释 : 选用下一跳地址和选择下一跳路由器的接口做为到达目标网络的出口的区别在于管理距离. 选择前者, 管理 距离为 1; 选择后者, 管理距离为 0 还可以在定义静态路由的时候指定管理距离. 配置实例一 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#ip route Asuqa(config)#end -19-

20 路由器 Aiko 配置如下 : configure terminal Aiko(config)#ip route serial 0 Aiko(config)#end 测试 : show ip route static S /24 [1/0] via ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 ms show ip route static S /24 is directly connected, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms Lab Exercise 1.2 熟练掌握如何配置默认路由. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 进入全局配置模式, 定义目标网络号, 目标网络的子网掩码分别为 , 并定义下一跳地址或接口 : Aiko(config)#ip route {next-hop-address exit-interface} [distance] 解释 : 代表所有网络. 选用下一跳地址和选择下一跳路由器的接口做为到达目标网络的出口的区 -20-

21 别在于管理距离. 选择前者, 管理距离为 1; 选择后者, 管理距离为 0 还可以在定义静态路由的时候指定管理 距离. 配置实例一 : 路由器 Aiko 配置如下 : configure terminal Aiko(config)#ip route Aiko(config)#end 测试 : show ip route static S* /0 [1/0] via 实验二 - 距离矢量路由协议基本配置 Lab Exercise 2.1 熟练掌握如何配置 RIP. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 进入全局配置模式, 启用 RIP: Aiko(config)#router rip -21-

22 2. 定义要宣告的直连主类网络号 : Aiko(config-router)#network {network-number} 解释 : 启用了 RIP 路由协议之后, 只需要宣告主类直连网络号, 即可完成 RIP 的配置. 配置实例一 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router rip Asuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router rip Aiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#end 测试 : show ip route rip R /24 [120/1] via , 00:00:21, Serial0 ping Type escape sequence to abort. -22-

23 Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 ms show ip route rip R /24 [120/1] via , 00:00:02, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 ms Lab Exercise 2.2 熟练掌握如何配置 RIPv2. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 进入全局配置模式, 启用 RIP: Aiko(config)#router rip 2. 启用 RIP 版本 2(RIPv2): Aiko(config-router)#version 2 3. 定义要宣告的直连主类网络号 : Aiko(config-router)#network {network-number} 解释 : 启用了 RIPv2 路由协议之后, 只需要宣告主类直连网络号, 即可完成 RIPv2 的配置. 配置实例一 : -23-

24 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router rip Asuqa(config-router)#version 2 Asuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router rip Aiko(config-router)#version 2 Aiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#end 测试 : show ip route rip R /24 [120/1] via , 00:00:21, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 ms -24-

25 show ip route rip R /24 [120/1] via , 00:00:02, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 ms 实验三 - 链路状态路由协议基本配置 Lab Exercise 3.1 熟练掌握如何配置单区域的 OSPF. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 启用 OSPF 进程 : Aiko(config)#router ospf {process-id} 2. 定义参与 OSPF 进程的接口和网络 : Aiko(config-router)#network {ip-address} {wildcard-mask} area {area-id} 解释 : OSPF 进程 ID 可以使用 1 到 中任何一个整数, 该 ID 只是本地的一个标识, 即一个 OSPF 网络, 每台 OSPF 路由器的进程 ID 是否一样, 和 OSPF 网络能否正常运行无关. 在定义 OSPF 路由器要宣告的区域的时候, 反掩码用来控制要宣告的范围,0 表示精确匹配,255 表示任意匹配.OSPF 网络中骨干区域为区域 0, 因此必须要有区域 0. 配置实例一 : -25-

26 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router ospf 1 Asuqa(config-router)#network area 0 Asuqa(config-router)#network area 0 Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router ospf Aiko(config-router)#network area 0 Aiko(config-router)#network area 0 Aiko(config-router)#end 测试 : show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface FULL/ - 00:00: Serial0 show ip route ospf O /24 [110/74] via , 00:01:13, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms -26-

27 show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface FULL/ - 00:00: Serial0 show ip route ospf O /24 [110/74] via , 00:01:48, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms Lab Exercise 3.2 熟练掌握如何配置多区域的 OSPF. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 启用 OSPF 进程 : Aiko(config)#router ospf {process-id} 2. 定义参与 OSPF 进程的接口和网络 : Aiko(config-router)#network {ip-address} {wildcard-mask} area {area-id} 解释 : OSPF 进程 ID 可以使用 1 到 中任何一个整数, 该 ID 只是本地的一个标识, 即一个 OSPF 网络, 每台 OSPF 路由器的进程 ID 是否一样, 和 OSPF 网络能否正常运行无关. 在定义 OSPF 路由器要宣告的区域的时候, 反掩码用来控制要宣告的范围,0 表示精确匹配,255 表示任意匹配.OSPF 网络中骨干区域为区域 0, 因此必须要有区域 0. 多区域的设计, 才是 OSPF 网络的精髓. 配置实例一 : -27-

28 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router ospf 1 Asuqa(config-router)#network area 0 Asuqa(config-router)#network area 1 Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router ospf Aiko(config-router)#network area 0 Aiko(config-router)#network area 2 Aiko(config-router)#end 测试 : show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface FULL/ - 00:00: Serial0 show ip route ospf O IA /24 [110/74] via , 00:00:22, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms -28-

29 show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface FULL/ - 00:00: Serial0 show ip route ospf O IA /24 [110/74] via , 00:01:03, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms 实验四 - 混合型路由协议基本配置 Lab Exercise 4.1 熟练掌握如何配置 EIGRP. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 定义自制系统 (AS) 号并启用 EIGRP: Aiko(config)#router eigrp {AS-number} 2. 宣告直连主类网络号 : Aiko(config-router)#network {network-number} 解释 : EIGRP 做为 IGRP 的扩展, 它同时集合了距离矢量和链路状态路由协议的特点. 参与同一 EIGRP 进程的 EIGRP 路由器必须处于相同的 AS 里, 接下来只需要宣告直连的主类网络号即可. 配置实例一 : -29-

30 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router eigrp 1 Asuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router eigrp 1 Aiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#end 测试 : show ip eigrp neighbors IP-EIGRP neighbors for process 1 H Address Interface Hold Uptime SRTT RTO Q Seq Type (sec) (ms) Cnt Num Se :01: show ip route eigrp D /24 [90/ ] via , 00:01:39, Serial /8 is variably subnetted, 2 subnets, 2 masks D /8 is a summary, 00:02:00, Null0 ping Type escape sequence to abort. -30-

31 Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms show ip eigrp neighbors IP-EIGRP neighbors for process 1 H Address Interface Hold Uptime SRTT RTO Q Seq Type (sec) (ms) Cnt Num Se :02: show ip route eigrp D /24 [90/ ] via , 00:02:08, Serial /8 is variably subnetted, 2 subnets, 2 masks D /8 is a summary, 00:02:10, Null0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms Lab Exercise 4.2 熟练掌握如何关闭 EIGRP 的自动汇总特性. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好, 能够端到端的 ping 通. 1. 定义自制系统 (AS) 号并启用 EIGRP: Aiko(config)#router eigrp {AS-number} 2. 宣告直连主类网络号 : Aiko(config-router)#network {network-number} 3. 关闭自动汇总 : Aiko(config-router)#no auto-summary 解释 : 当路由更新经过主类网络边界的时候, 它会自动向主类网络号进行汇总. 路由自动汇总特性是 EIGRP 默认的 操作.EIGRP 可以关闭该特性. -31-

32 配置实例一 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#router eigrp 1 Asuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#no auto-summary Asuqa(config-router)#end 路由器 Aiko 配置如下 : configure terminal Aiko(config)#router eigrp 1 Aiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#no auto-summary Aiko(config-router)#end 测试 : show ip eigrp neighbors IP-EIGRP neighbors for process 1 H Address Interface Hold Uptime SRTT RTO Q Seq Type (sec) (ms) Cnt Num Se :01: show ip route eigrp D /24 [90/ ] via , 00:01:40, Serial0 ping

33 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms show ip eigrp neighbors IP-EIGRP neighbors for process 1 H Address Interface Hold Uptime SRTT RTO Q Seq Type (sec) (ms) Cnt Num Se :02: show ip route eigrp D /24 [90/ ] via , 00:02:00, Serial0 ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 ms -33-

34 第三章交换篇 实验一 - 层二交换机基本配置 Lab Exercise 1.1 熟练掌握如何进入交换机各种模式并设置主机名. Catalyst 2950 系列交换机一台. 1. 从路由器用户模式进入特权模式 : Aiko>enable 2. 从特权模式进入全局配置模式 : configure terminal 3. 为路由器设置主机名 : Aiko(config)#hostname {hostname} 4. 退出到特权模式 : Aiko(config)#end 5. 退出到用户模式 : disable 6. 退出控制台线路 : Aiko>quit 解释 : 交换机的模式大致可分为 : 1. 用户模式 : 权限最低, 通常只能使用少量查看性质的命令. 2. 特权模式 : 可以使用更多查看性质的命令和一些少量修改交换机参数的命令. 3. 全局配置模式 : 不能使用查看性质的命令, 但是确实做全局性修改和设置的模式, 它还可以向下分为一些子模式, 比如接口配置模式, 线路配置模式等等. 配置实例一 : Switch>enable Switch#configure terminal Switch(config)#hostname Aiko Aiko(config)#exit *Mar 1 00:04:30.815: %SYS-5-CONFIG_I: Configured from console by console disable Aiko> -34-

35 Lab Exercise 1.2 熟练掌握如何为交换机设置时间. Catalyst 2950 系列交换机一台. 在特权模式下设置交换机时间 : clock set {hh:mm:ss day month year} 解释 : 交换机本地的时间标识. 配置实例一 : clock set 16:16:16 25 September 2005 show clock 16:16: UTC Sun Sep Lab Exercise 1.3 熟练掌握如何设置空闲超时时间. Catalyst 2950 系列交换机一台. 1. 从全局配置模式进入线路配置模式, 进入控制台口线路 : Aiko(config)#line console {number} 2. 启用光标跟随 : Aiko(config-line)#logging synchronous 3. 设置当键盘多少时间内无动作, 自动被交换机弹出到用户模式以外, 即退出. 如果设置为 0 分 0 秒代表永不超时 : Aiko(config-line)#exec-timeout {minute} {second} 解释 : 所谓光标跟随, 是指当我们在输入命令的时候, 不会被一些日志信息或 debug 命令产生的调试命令所冲断. 模式该特性是没有启用的. 配置实例一 : Aiko(config)#exit -35-

36 *Mar 1 00:20:11.231: %SYS-5-CONFIG_I: Configured from console by consoleconfigure terminal Aiko(config)#line console 0 Aiko(config-line)#logging synchronous Aiko(config-line)#end *Mar 1 00:20:38.123: %SYS-5-CONFIG_I: Configured from console by console configure terminal Aiko(config)# 配置实例二 : show clock *15:32: UTC Mon Jul configure terminal Aiko(config)#line console 0 Aiko(config-line)#exec-timeout 20 0 Aiko(config)#end exit *Mar 1 00:24:33.643: %SYS-5-CONFIG_I: Configured from console by console show clock *15:52: UTC Mon Jul Aiko con0 is now available Press RETURN to get started. Aiko> Lab Exercise 1.4 熟练掌握如何为交换机设置标语信息和描述信息. Catalyst 2950 系列交换机一台. 1. 进入全局配置模式, 设置标语信息 : Aiko(config)#banner motd # {text} # 2. 进入接口配置模式 : Aiko(config-if)#interface {type} {number} -36-

37 3. 为交换机接口设置描述信息 : Aiko(config-if)#description {text} 解释 : 在设置标语信息的时候, 以 # 号做为分隔符, 并按下回车键. 描述语句的本地的一个标识, 它只在本地可见, 并 且 Cisco IOS 执行命令的时候会跳过它. 配置实例一 : Aiko(config)#banner motd # Enter TEXT message. End with the character '#'. hello! # Aiko(config)#end exit Aiko con0 is now available Press RETURN to get started. hello! Aiko> 配置实例二 : Aiko(config-if)#description LAN Sales Aiko(config-if)#end *Mar 1 02:05:48.919: %SYS-5-CONFIG_I: Configured from console by console show running-config interface ethernet 0 Building configuration... Current configuration :! interface Ethernet0 description LAN Sales shutdown end Lab Exercise 1.5 熟练掌握如何为交换机特权模式设置密码. -37-

38 Catalyst 2950 系列交换机一台. 进入全局配置模式, 设置密码 : Aiko(config)#enable {password secret} {password} 解释 : 两种密码的区别在于, 前者是一些低版本 Cisco IOS 软件的认证方式, 并且密码是基于明文的 ; 后者是目前 Cisco IOS 软件最常用的认证方式, 它是基于 MD5 加密的. 如果同时设置了这两种认证方式, 他们的口令必须不一样. 但是, 我们推荐使用后者进行认证, 并且如果同时设置了两种认证方式, 只有后者生效. 密码区分大小写. 配置实例一 : Aiko(config)#enable password Aiko Aiko(config)#enable secret Aiko The enable secret you have chosen is the same as your enable password. This is not recommended. Re-enter the enable secret. Aiko(config)#enable secret Asuqa Aiko(config)#exit *Mar 1 02:16:48.067: %SYS-5-CONFIG_I: Configured from console by console exit Aiko con0 is now available Press RETURN to get started. Aiko>enable Password:Asuqa show running-config Building configuration... Current configuration : 609 bytes! version 12.0 no service pad service timestamps debug uptime service timestamps log uptime no service password-encryption! hostname Aiko! -38-

39 logging queue-limit 100 enable secret 5 $1$NTU5$EEYi0qfB1pGENzuPxDCyz. enable password Aiko! --More-- Lab Exercise 1.6 熟练掌握如何为交换机各个配置模式设置密码. Catalyst 2950 系列交换机一台. 1. 从全局配置模式进入线路配置模式, 进入控制台口线路 : Aiko(config)#line {console vty} {start-number} [end-number] 2. 设置密码 : Aiko(config-line)#password {password} 3. 启用登陆 : Aiko(config-line)#login 解释 : 当设置密码之后, 如果不启用登陆命令, 退出之后, 交换机是不会提示输入密码的. 控制台线路密码为控制台线路所用 ; 虚拟终端线路 (VTY) 是为 telnet 会话所用, 路由器根据 Cisco IOS 软件版本不同, 支持多条 VTY 会话数目也不同. 所有密码是以明文方式保存在 DRAM(running-config) 文件里的. 配置实例一 : Aiko(config)#line console 0 Aiko(config-line)#password Aiko Aiko(config-line)#login Aiko(config)#line vty 0 15 Aiko(config-line)#password Aiko Aiko(config-line)#login Aiko(config-line)#end *Mar 1 03:04:43.491: %SYS-5-CONFIG_I: Configured from console by console exit Aiko con0 is now available Press RETURN to get started. User Access Verification Password:Aiko -39-

40 Aiko> 实验二 - VLAN 基本配置 Lab Exercise 2.1 熟练掌握如何创建 VLAN. Catalyst 2950 系列交换机两台. 1. 全局配置模式下, 输入 VLAN ID, 进入 VLAN 配置模式 : Aiko(config)#vlan {vlan-id} 2. 为 VLAN 设置名字. 可选 : Aiko(config-vlan)#name {vlan-name} 3. 创建了以太网 VLAN 之后, 接下来把交换机端口分配到特定的 VLAN 里. 假如你把端口分配进了不存在的 VLAN 里, 那么新的 VLAN 将自动被创建. 进入接口配置模式 : Aiko(config)#interface {interface} 4. 定义 VLAN 端口的成员关系, 把它定义为层 2 接入端口 : Aiko(config-if)#switchport mode access 5. 把端口分配进特定的 VLAN 里 : Aiko(config-if)#switchport access vlan {vlan-id} 6. 配置中继端口, 定义中继模式 : Aiko(config-if)#switchport trunk encapsulation {isl dot1q negotiate} 7. 定义端口为层 2 的中继端口 : Aiko(config-if)#switchport mode {dynamic auto dynamic desirable trunk} 解释 : 一般当 VLAN 跨交换机划分, 通常要配置中继链路. 配置实例一 : 交换机 Asuqa 配置如下 : configure terminal -40-

41 Asuqa(config)#vlan 2 Asuqa(config-vlan)#name Sales Asuqa(config-vlan)#vlan 3 Asuqa(config-vlan)#name Tech Asuqa(config-vlan)#interface f0/2 Asuqa(config-if)#switchport mode access Asuqa(config-if)#switchport access vlan 2 Asuqa(config-if)#no shutdown Asuqa(config-if)#interface f0/3 Asuqa(config-if)#switchport mode access Asuqa(config-if)#switchport access vlan 3 Asuqa(config-if)#no shutdown Asuqa(config-if)#interface f0/1 Asuqa(config-if)#switchport trunk encapsulation dot1q Asuqa(config-if)#switchport mode trunk Asuqa(config-if)#no shutdown Asuqa(config-if)#end 交换机 Aiko 配置如下 : configure terminal Aiko(config)#vlan 2 Aiko(config-vlan)#name Sales Aiko(config-vlan)#vlan 3 Aiko(config-vlan)#name Tech Aiko(config-vlan)#interface f0/3 Aiko(config-if)#switchport mode access Aiko(config-if)#switchport access vlan 2 Aiko(config-if)#no shutdown Aiko(config-if)#interface f0/5 Aiko(config-if)#switchport mode access Aiko(config-if)#switchport access vlan 3 Aiko(config-if)#no shutdown Aiko(config-if)#interface f0/24 Aiko(config-if)#switchport trunk encapsulation dot1q Aiko(config-if)#switchport mode trunk Aiko(config-if)#no shutdown Aiko(config-if)#end 测试 : show vlan brief -41-

42 VLAN Name Status Ports default active Fa0/1, Fa0/4, Fa0/5, Fa0/7 Fa0/8, Fa0/9, Fa0/10, Fa0/11 Fa0/12, Fa0/13, Fa0/14, Fa0/15 Fa0/16, Fa0/17, Fa0/18, Fa0/19 Fa0/20, Fa0/21, Fa0/22, Fa0/23 Gi0/1, Gi0/2 2 Sales active Fa0/2 3 Tech active Fa0/ fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup show vlan brief VLAN Name Status Ports default active Fa0/1, Fa0/2, Fa0/4, Fa0/6 Fa0/7, Fa0/8, Fa0/9, Fa0/10 Fa0/11, Fa0/12, Fa0/13, Fa0/14 Fa0/15, Fa0/16, Fa0/17, Fa0/18 Fa0/19, Fa0/20, Fa0/21, Fa0/22 Fa0/23, Gi0/1, Gi0/2 2 Sales active Fa0/3 3 Tech active Fa0/ fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup Lab Exercise 2.2 熟练掌握如何配置 VTP. Catalyst 2950 系列交换机两台. 1. 全局配置模式下, 定义 VTP 模式 : -42-

43 Aiko(config)#vtp mode {server client transparent} 2. 定义 VTP 域名, 在同一 VLAN 管理域的交换机的 VTP 域名必须相同. 该域名长度为 1 到 32 字符 : Aiko(config)#vtp domain {domain-name} 3. 设置 VTP 域的密码, 同一 VTP 域里的交换机的 VTP 域的密码必须一致, 密码长度为 8 到 64 字符. 可选 : Aiko(config)#vtp password {password} 解释 : VTP 模式如果为服务器模式, 可以在交换机上增加, 删除和修改 VLAN 信息 ; 如果 VTP 模式为客户模式, 不能在交换机上增加, 删除和修改 VLAN 信息, 它的 VLAN 信息是从 VTP 模式为服务器模式的交换机上学习而来 ; 如果 VTP 模式为透明模式, 交换机可以独立维持自身的 VLAN 信息库. 默认 VTP 模式均为服务器模式. 准备工作 : VLAN 已经划分完毕. 配置实例一 : 交换机 Asuqa 配置如下 : configure terminal Asuqa(config)#vtp domain Aiko Changing VTP domain name from NULL to Aiko Asuqa(config)#vtp mode server Device mode already VTP SERVER. Asuqa(config)#vtp password Asuqa Setting device VLAN database password to Asuqa Asuqa(config)#end 交换机 Aiko 配置如下 : configure terminal Aiko(config)#vtp domain Aiko Changing VTP domain name from NULL to Aiko Aiko(config)#vtp mode client Setting device to VTP CLIENT mode. Aiko(config)#no vlan 2-43-

44 VTP VLAN configuration not allowed when device is in CLIENT mode. Aiko(config)#vtp password Asuqa Setting device VLAN database password to Asuqa Aiko(config)#end -44-

45 第四章远程篇 实验一 - 帧中继基本配置 Lab Exercise 1.1 熟练掌握如何配置帧中继 PVC. Cisco 2501 路由器两台, 帧中继交换机一台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好. 1. 接口配置模式下, 在路由器接口上启用帧中继封装 : Aiko(config-if)#encapsulation frame-relay 2. 如果做 IP 地址到 DLCI 的静态映射, 需要关闭反向 ARP(IARP): Aiko(config-if)#no frame-relay inverse-arp 3. 配置 IP 地址到 DLCI 的静态映射 : Aiko(config-if)#frame-relay map ip {ip-address} {dlci} [broadcast] 解释 : 在做帧中继静态映射的时候, 记得关闭 IARP. 配置实例一 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#interface serial 1 Asuqa(config-if)#encapsulation frame-relay Asuqa(config-if)#no frame-relay inverse-arp Asuqa(config-if)#frame-relay map ip broadcast Asuqa(config-if)#no shutdown Asuqa(config-if)#end -45-

46 00:13:56: %SYS-5-CONFIG_I: Configured from console by console 00:13:56: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:14:07: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 路由器 Aiko 配置如下 : configure terminal Aiko(config)#interface serial 1 Aiko(config-if)#encapsulation frame-relay Aiko(config-if)#no frame-relay inverse-arp Aiko(config-if)#frame-relay map ip broadcast Aiko(config-if)#no shutdown Aiko(config-if)#end 00:15:52: %SYS-5-CONFIG_I: Configured from console by console 00:15:53: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:16:04: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 测试 : show frame-relay map Serial1 (up): ip dlci 102(0x66,0x1860), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/96/100 ms show frame-relay map Serial1 (up): ip dlci 201(0xC9,0x3090), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. -46-

47 Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/98/100 ms Lab Exercise 1.2 熟练掌握如何配置帧中继点到点子接口和多点子接口. Cisco 2501 路由器两台, 帧中继交换机一台. 1. 接口配置模式下, 如果物理接口配置的有 IP 地址信息, 移除物理接口 IP 地址信息 : Aiko(config-if)#no ip address 2. 在物理接口上设置封装类型 Aiko(config-if)#encapsulation frame-relay 3. 在物理接口上关闭 IARP: Aiko(config-if)#no frame-relay inverse-arp 4. 创建子接口并指定子接口类型 : Aiko(config-if)#interface serial {number.subif-number} {point-to-point multipoint} 5. 为子接口设置 IP 地址信息 : Aiko(config-if)#ip address {ip-address} {mask} 6. 对于点到点类型的子接口, 定义 IP 地址到 DLCI 的映射 : Aiko(config-subif)#frame-relay interface-dlci {dlci} 7. 对于点到点类型的子接口, 定义 IP 地址到 DLCI 的映射 : Aiko(config-subif)#frame-relay map ip {ip-address} {dlci} [broadcast] 解释 : 在创建子接口的时候, 别忘记指定子接口的类型. 对于点到点类型的子接口, 静态映射的命令和在物理接口下 静态映射的命令不同 ; 对于多点类型的子接口, 静态映射的命令和在物理接口下静态映射的命令相同. 配置实例一 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#interface serial 1-47-

48 Asuqa(config-if)#encapsulation frame-relay Asuqa(config-if)#no frame-relay inverse-arp Asuqa(config-if)#frame-relay map ip broadcast Asuqa(config-if)#no shutdown Asuqa(config-if)#end 00:13:56: %SYS-5-CONFIG_I: Configured from console by console 00:13:56: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:14:07: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 路由器 Aiko 配置如下 : configure terminal Aiko(config)#interface serial 1 Aiko(config-if)#no ip address Aiko(config-if)#encapsulation frame-relay Aiko(config-if)#no frame-relay inverse-arp Aiko(config-if)#no frame-relay inverse-arp Aiko(config-if)#no shutdown Aiko(config-subif)#interface serial 1.1 point-to-point Aiko(config-subif)#ip address Aiko(config-subif)#frame-relay interface-dlci 201 Aiko(config-fr-dlci)#end 00:15:52: %SYS-5-CONFIG_I: Configured from console by console 00:15:53: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:16:04: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 测试 : show frame-relay map Serial1 (up): ip dlci 102(0x66,0x1860), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/96/100 ms -48-

49 show frame-relay map Serial1 (up): ip dlci 201(0xC9,0x3090), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/98/100 ms 配置实例二 : 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#interface serial 1 Asuqa(config-if)#no ip address Asuqa(config-if)#encapsulation frame-relay Asuqa(config-if)#no frame-relay inverse-arp Asuqa(config-if)#no shutdown Asuqa(config-subif)#interface serial 1.1 multipoint Asuqa(config-subif)#ip address Asuqa(config-subif)#frame-relay map ip broadcast Asuqa(config-if)#end 00:13:56: %SYS-5-CONFIG_I: Configured from console by console 00:13:56: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:14:07: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 路由器 Aiko 配置如下 : configure terminal -49-

50 Aiko(config)#interface serial 1 Aiko(config-if)#encapsulation frame-relay Aiko(config-if)#no frame-relay inverse-arp Aiko(config-if)#frame-relay map ip broadcast Aiko(config-if)#no shutdown Aiko(config-if)#end 00:15:52: %SYS-5-CONFIG_I: Configured from console by console 00:15:53: %LINK-3-UPDOWN: Interface Serial1, changed state to up 00:16:04: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up 测试 : show frame-relay map Serial1 (up): ip dlci 102(0x66,0x1860), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/96/100 ms show frame-relay map Serial1 (up): ip dlci 201(0xC9,0x3090), static, broadcast, CISCO, status defined, active ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 96/98/100 ms 实验二 - 网络地址翻译基本配置 Lab Exercise

51 熟练掌握如何配置静态 NAT. Cisco 2501 路由器一台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好. 1. 特权模式下, 建立内部本地地址和和内部全局地址的对应关系 : Aiko(config)#ip nat inside source static {local ip-address} {global ip-address} 2. 分别定义连接内网和外网的接口 : Aiko(config)#ip nat {inside outside} 配置实例一 : 路由器 Aiko 配置如下 : configure terminal Aiko(config)#interface serial 0 Aiko(config-if)#ip add Aiko(config-if)#ip nat outside Aiko(config-if)#no shutdown Aiko(config-if)#interface ethernet 0 Aiko(config-if)#ip add Aiko(config-if)#ip nat inside Aiko(config-if)#no shutdown Aiko(config-if)#end 测试 : show ip nat statistics Total active translations: 0 (0 static, 0 dynamic; 0 extended) Outside interfaces: Serial0 Inside interfaces: Ethernet0 Hits: 0 Misses: 0 Expired translations: 0-51-

52 Dynamic mappings: -52-

53 第五章策略篇 实验一 - 访问控制列表基本配置 Lab Exercise 1.1 熟练掌握如何配置标准 IP ACL. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好. 1. 全局配置模式下, 定义标准 IP ACL: Aiko(config)#access-list {access-list-number} {permit deny} [host] {source-ip-address} [inverse-mask] 2. 接口配置模式下应用 IP ACL: Aiko(config-if)#ip access-group {access-list-number} {in out} 解释 : 标准 IP ACL 的序列号的范围是 1 到 99. 标准 IP ACL 是根据源 IP 地址进行控制, 其中反掩码用于控 制网段范围. 另外如果使用关键字 host, 反掩码即为 , 可省略不写. 并且要一记住 IP ACL 末尾默认隐 含的全部拒绝. 配置实例一, 禁止 PC 1 访问路由器 Asuqa: 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#access-list 1 deny Asuqa(config)#access-list 1 permit any Asuqa(config)#interface serial 1 Asuqa(config-if)#ip access-group 1 in -53-

54 Asuqa(config-if)#end 测试 : ping Protocol [ip]: Target IP address: Repeat count [5]: Datagram size [100]: Timeout in seconds [2]: Extended commands [n]: y Source address or interface: Type of service [0]: Set DF bit in IP header? [no]: Validate reply data? [no]: Data pattern [0xABCD]: Loose, Strict, Record, Timestamp, Verbose[none]: Sweep range of sizes [n]: Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds: Packet sent with a source address of Success rate is 0 percent (0/5) Lab Exercise 1.2 熟练掌握如何配置标准 IP ACL 来控制 telnet 会话的建立. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好,VTY 线路密码设置完成. 1. 全局配置模式下, 定义标准 IP ACL: Aiko(config)#access-list {access-list-number} {permit deny} [host] {source-ip-address} [inverse-mask] 2. 接口配置模式下应用 IP ACL: Aiko(config-if)#access-class {access-list-number} {in out} 解释 : 标准 IP ACL 的序列号的范围是 1 到 99. 标准 IP ACL 是根据源 IP 地址进行控制, 其中反掩码用于控 制网段范围. 另外如果使用关键字 host, 反掩码即为 , 可省略不写. 并且要一记住 IP ACL 末尾默认隐 -54-

55 含的全部拒绝. 配置实例一, 禁止 PC 1 远程 telnet 到路由器 Asuqa: 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#access-list 1 deny Asuqa(config)#access-list 1 permit any Asuqa(config)#interface serial 1 Asuqa(config)#line vty 0 4 Asuqa(config-line)#access-class 1 in Asuqa(config-line)#end 测试 : telnet /source-interface ethernet 0 Trying % Destination unreachable; gateway or host down Lab Exercise 1.3 熟练掌握如何配置扩展 IP ACL. Cisco 2501 路由器两台. 准备工作 : 确保路由器之间接口 IP 地址信息已经设置好. 1. 全局配置模式下, 定义扩展 IP ACL: Aiko(config)#access-list {access-list-number} {permit deny} {protocol} [host] {source-ip-address} [inverse-mask] [host] {destination-ip-address} [inverse-mask] -55-

56 [operator port-number] 2. 接口配置模式下应用 IP ACL: Aiko(config-if)#ip access-group {access-list-number} {in out} 解释 : 扩展 IP ACL 的序列号的范围是 100 到 199. 扩展 IP ACL 是根据协议, 端口号, 源 IP 地址, 目标 IP 地 址进行控制, 其中反掩码用于控制网段范围. 另外如果使用关键字 host, 反掩码即为 , 可省略不写. 并 且要一记住 IP ACL 末尾默认隐含的全部拒绝. 配置实例一, 禁止路由器 Aiko 远程 telnet 到路由器 Asuqa: 路由器 Asuqa 配置如下 : configure terminal Asuqa(config)#access-list 101 deny tcp host host eq 23 Asuqa(config)#access-list 101 deny tcp host host eq 23 Asuqa(config)#access-list 101 permit ip any any Asuqa(config)#interface serial 0 Asuqa(config-if)#ip access-group 101 in Asuqa(config-if)#end 测试 : telnet Trying % Destination unreachable; gateway or host down -56-

57 第六章设备篇 实验一 - 系统镜象软件备份 Lab Exercise 1.1 熟练掌握如何备份 Cisco IOS 软件. Cisco 2501 路由器一台, 装有 TFTP 软件的主机一台. 准备工作 : 确保路由器以太网接口 IP 地址和主机 (TFTP 服务器 )IP 地址位于同一网段. TFTP 软件下载地址 : 特权模式下, 将 Cisco IOS 软件备份到 TFTP 服务器上 : copy flash: tftp: 解释 : 启动主机上的 TFTP 软件程序, 要确保路由器以太网接口 IP 地址和主机 (TFTP 服务器 )IP 地址位于同 一网段. 在备份之前先 ping 远程 TFTP 服务器, 看 TFTP 服务器是否存活. 并确保 TFTP 服务器上有足够空间. 配置实例一 : 路由器 Aiko 配置如下 : ping Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 4/4/4 ms show flash: System flash directory: File Length Name/status c2500-is-l t14.bin -57-

58 [ bytes used, available, total] 16384K bytes of processor board System flash (Read ONLY) copy flash:c2500-is-l t14.bin tftp: Address or name of remote host []? Destination filename [c2500-is-l t14.bin]?!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! bytes copied in secs (52228 bytes/sec) -58-

59 -59-

60 -60-

61 -61-

62 -62-

63 -63-

64 -64-

路由器基本配置

路由器基本配置 路由器基本配置 本章内容 路由器的基本操作 实验练习 常用的路由器配置方法 TFTP Console MODEM AUX telnet web 任何 Interface AUX 备份接口, 一般用于路由器的管理备份接口 路由器的操作模式 : 配置模式 1. 线路配置模式 Router(config-line)# 配置路由器的线路参数 2. 路由协议配置模式 Router(config-router)#

More information

D. 192.168.5.32 E. 192.168.5.14 答 案 :C 3. 工 作 站 A 配 置 的 IP 地 址 为 192.0.2.24/28. 工 作 站 B 配 置 的 IP 地 址 为 192.0.2.100/28. 两 个 工 作 站 之 间 有 直 通 线 连 接, 两 台

D. 192.168.5.32 E. 192.168.5.14 答 案 :C 3. 工 作 站 A 配 置 的 IP 地 址 为 192.0.2.24/28. 工 作 站 B 配 置 的 IP 地 址 为 192.0.2.100/28. 两 个 工 作 站 之 间 有 直 通 线 连 接, 两 台 CCNP 学 前 测 试 题 都 选 自 官 方 的 全 真 考 试 题, 共 100 道 题 实 际 测 试 选 60 道 题, 同 官 方 正 式 考 题 数 目 基 本 一 致, 因 此 等 于 是 模 拟 考 试, 采 用 网 上 形 式 进 行 测 评 学 前 测 评 目 的 是 为 了 检 验 大 家 对 CCNA 阶 段 知 识 掌 握 的 程 度, 同 时 对 CCNA 最 核 心

More information

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

More information

通过动态路由协议实现链路备份

通过动态路由协议实现链路备份 通过动态路由协议实现链路备份 实验名称 通过动态路由协议实现链路备份 实验目的 掌握通过在不同链路上配置不同的路由协议实现链路备份 背景描述 你是公司高级网络管理员, 公司内部有一个很重要的服务器所在网段为 192.168.12.0/24, 平常访问通过 R1,R3 的 OSPF 路由协议, 为了保证该网段随时能够访问, 不能因为链路故障出问题, 要求你实现一个备份冗余的功能, 请给予支持 实现功能

More information

12.pdf

12.pdf 对 帧 中 继 配 置 与 故 障 排 除 的 全 面 的 指 南 交 互 : 本 文 档 对 您 的 Cisco 设 备 进 行 自 定 义 分 析 目 录 简 介 开 始 使 用 前 规 则 先 决 条 件 使 用 的 组 件 背 景 理 论 配 置 基 本 的 帧 中 继 网 络 图 配 置 debug 和 show 命 令 配 置 星 形 帧 中 继 网 络 图 配 置 显 示 命 令 分

More information

ebook20-8

ebook20-8 8 Catalyst 5000 7 V L A N C a t a l y s t V L A N V L A N 8.1 VLAN VTP V L A N A VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 B VLAN VLAN 10 VLAN 20 VLAN 10 C VLAN VLAN 10 VLAN 20 VLAN 10 VLAN 20 8-1 VLAN 8 Catalyst

More information

Microsoft Word - frame-relay.doc

Microsoft Word - frame-relay.doc 实验目的 1. 掌握全网格型帧中继的配置 ; 2. 掌握帧中继子端口的配置 ; 3. 掌握帧中继的流量整形 Frame-relay 实验 实验原理 一 帧中继技术概述 1. 帧中继网简述 帧中继封装方式 :cisco 和 ietf 注意 : 帧中继只工作在 OSI 的物理层和数据链路层 2. DLCI LMI 的意义和类型 DLCI 用来标识 VC( 通常是 PVC) 的数字, 在 0~1023 之间

More information

Cisco Cisco Cisco (ROM) (FLASH) (RAM) RAM(NVRAM) Cisco

Cisco Cisco Cisco (ROM) (FLASH) (RAM) RAM(NVRAM) Cisco Ch2 Cisco IOS Cisco Cisco Cisco (ROM) (FLASH) (RAM) RAM(NVRAM) Cisco Cisco ROM ROM Cisco ROM(BIOS) ROM 1. POST Cisco 2. BootStrap Cisco IOS 3. IOS IOS IOS Cisco ROM ROM Cisco Flash Flash Flash IOS Cisco

More information

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

计算机网络 实验指导书 / 实验四 : 动态路由协议 实验四 : 动态路由协议 一 实验目的 1 进一步理解路由器的工作原理; 2 掌握 RIP 的基本原理和实现 ; 3 掌握 OSPF 的基本原理和实现 二 实验学时 2 学时 三 实验类型 综合性 四 实验需求 1 硬件每人配备计算机 1 台 2

计算机网络 实验指导书 / 实验四 : 动态路由协议 实验四 : 动态路由协议 一 实验目的 1 进一步理解路由器的工作原理; 2 掌握 RIP 的基本原理和实现 ; 3 掌握 OSPF 的基本原理和实现 二 实验学时 2 学时 三 实验类型 综合性 四 实验需求 1 硬件每人配备计算机 1 台 2 实验四 : 动态路由协议 一 实验目的 1 进一步理解路由器的工作原理; 2 掌握 RIP 的基本原理和实现 ; 3 掌握 OSPF 的基本原理和实现 二 实验学时 2 学时 三 实验类型 综合性 四 实验需求 1 硬件每人配备计算机 1 台 2 软件 Windows 7 以上操作系统, 安装 GNS3 网络仿真与 VirtualBox 虚拟化软件, 安装 Putty 软件 3 网络实验室局域网支持,

More information

计算机网络概论

计算机网络概论 1 repeater bridge router gateway V.S OSI Repeater(Hub) 1 Repeater 2 3 ( Hub 4 Bridge 1 Bridge 2 N N DL1 DL1 DL2 DL2 Ph1 Ph1 Ph2 Ph2 1 2 Bridge 3 MAC Ethernet FDDI MAC MAC Bridge 4 5 6 7 50873EA6, 00123456

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

epub

epub 3 Cisco 3.1 S e t u p C i s c o C i s c o Cisco IOS C i s c o 3.2 Te l n e t T F T P 3-1 3-1 configure terminal configure memory Configure network t e l n e t < C t r l - Z > conf t N V R A M T F T P I

More information

IS-IS路由协议中文教程v1

IS-IS路由协议中文教程v1 IS-IS v1.0 Chapter 0 Preface Statement BSCI Building Scalable Cisco Internetworks Configuring IS-IS Protocol IS-IS IS-IS OSI TCP/IP IS-IS OSPF Cisco System BSCI Student Guide Outline 1 OSI IS-IS 2 IS-IS

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

¶C¶L§§¬_™¨ A.PDF

¶C¶L§§¬_™¨ A.PDF 1 9 3 1 9 4 / 7.1 / 1 9 5 7.2 % netstat -rn Routing tables Destination Gateway Flags Refcnt Use Interface 127.0.0.1 127.0.0.1 UH 1 132 lo0 172.16.12.0 172.16.12.2 U 26 49041 le0 1 9 6 / % ping -s almond

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

工程师培训

工程师培训 .1 TCP/IP TCP/IP 1 .2.2.1 Host 1960 S 1970 S Host Low Speed Lines 1970 S 1980 S pc Server Local Interneting 1980 S 1990 S Branch. pc Branch. WAN Branch. pc pc IBM SNA IBM X.25 2 .2.2 OSI OSI Application

More information

active phisical rp address: backup phisical rp address: 截取部分 TOPO 图说明到 不通的问题 : internet internet tengige 0/0/0/0 tengige

active phisical rp address: backup phisical rp address: 截取部分 TOPO 图说明到 不通的问题 : internet internet tengige 0/0/0/0 tengige ASR9000 ping 丢包 troubleshooting 目录 硬件平台软件版本案例介绍问题分析思路问题总结经验总结相关命令 硬件平台 ASR9000 软件版本 4.2.0 案例介绍 拓扑示例 : 问题, 客户从外网 internet ping 3 个 vrrp subnet 的地址时候始终只能通一个 IP 地址 : vrrp virtual IP :2.2.2.129 其他不能 ping 通的

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

ebook20-7

ebook20-7 7 Catalyst 5000 Catalyst 5000 Cisco Works for Switched Internetworks (CWSI) C L I C L I G U I C L C W S I C i s c o C W S I C L I I P Te l n e t C L I 9600 8 6 7.1 Catalyst C a t a l y s t Cisco IOS C

More information

Microsoft Word - chp21路由优化.doc

Microsoft Word - chp21路由优化.doc 第 21 章路由优化 在当今高性能的网络中, 为了保证网络的伸缩性 稳定性 安全性和快速收敛, 必须对网络进行优化 路由过滤和策略路由是路由优化的常用方法 21.1 路由优化概述 路由过滤是指在路由更新中抑制某些路由不被发送和接收, 被动接口 分布控制列表 重分布结合路由策略等都可以实现路由过滤 策略路由提供了根据网络管理者制定的标准来进行数据包转发的一种机制 基于策略的路由比传统路由能力更强, 使用更灵活,

More information

IP-Routing-05.pdf

IP-Routing-05.pdf RI P R I P - 2 RIP -1 R I P - 2 DV RIP -1 RIP-2 16... RIP-2 RIP-2 RIP -1 R I P - 2 RIP-2 RIP-2 RIP-2 V L S M disc ontiguous addr ess sp ace C I D R Cla ssless In ter -Dom ain Routing 121 1 2 2 IP RIP-2

More information

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP TCP/IP : TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP 1. ASCII EBCDIC Extended Binary-Coded Decimal Interchange Code 2. / (1) (2) Single System Image SSI) (3) I/O (4) 3.OSI OSI Open System Interconnection

More information

计算机网络 实验指导书 / 实验三 : 使用路由器组网 实验三 : 使用路由器组网 一 实验目的 1 理解路由器的基本工作原理; 2 掌握路由器的基本管理和配置方法; 3 理解路由组网的方法和静态路由的具体使用; 4 理解基于路由器的园区网的结构, 并进一步体会园区网的设计思路 二 实验学时 2 学

计算机网络 实验指导书 / 实验三 : 使用路由器组网 实验三 : 使用路由器组网 一 实验目的 1 理解路由器的基本工作原理; 2 掌握路由器的基本管理和配置方法; 3 理解路由组网的方法和静态路由的具体使用; 4 理解基于路由器的园区网的结构, 并进一步体会园区网的设计思路 二 实验学时 2 学 实验三 : 使用路由器组网 一 实验目的 1 理解路由器的基本工作原理; 2 掌握路由器的基本管理和配置方法; 3 理解路由组网的方法和静态路由的具体使用; 4 理解基于路由器的园区网的结构, 并进一步体会园区网的设计思路 二 实验学时 2 学时 三 实验类型 综合性 四 实验需求 1 硬件每人配备计算机 1 台 2 软件 Windows 7 以上操作系统, 安装 GNS3 网络仿真与 VirtualBox

More information

ARP ICMP

ARP ICMP ARP ICMP 2 9-1 ARP 9-2 ARP 9-3 ARP 9-4 ICMP 9-5 ICMP 9-6 ICMP 9-7 ICMP 3 ARP ICMP TCP / IP, IP ARP ICMP 3 IP, ARP ICMP IP ARP ICMP 2, 4 9-1 ARP, MAC, IP IP, MAC ARP Address Resolution Protocol, OSI ARP,,

More information

GPRS IP MODEM快速安装说明

GPRS IP MODEM快速安装说明 GF-3026D CDMA 无 线 路 由 器 用 户 手 册 北 京 嘉 复 欣 科 技 有 限 公 司 地 址 : 北 京 市 海 淀 区 阜 成 路 115 号 北 京 印 象 2 号 楼 213 室 电 话 :86-10-88122130 88153193 88153197 传 真 :86-10-88122129 网 站 :http://www.garefowl.com/ 目 录 一 产 品

More information

mppp-ddr.pdf

mppp-ddr.pdf DDR 多 链 路 PPP - 基 本 配 置 和 验 证 目 录 简 介 开 始 使 用 前 规 则 先 决 条 件 使 用 的 组 件 多 链 路 PPP 干 什 么 配 置 多 链 路 PPP 命 令 传 统 DDR 拨 号 原 型 (Dialer Profile) 验 证 MPPP 操 作 相 关 信 息 简 介 多 链 路 PPP ( 也 指 MP MPPP MLP 或 多 链 路 ) 提

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

局域网技术课程设计报告.doc

局域网技术课程设计报告.doc 湖 南 第 一 师 范 学 院 信 息 科 学 与 工 程 学 院 局 域 网 络 设 计 方 案 1 目 录 一 系 统 概 述...6 1 课 程 设 计 目 的 :...6 2 课 程 设 计 要 求 :...6 3 需 求 分 析 :...6 二 系 统 分 析 与 设 计...7 1 拓 扑 图 设 计...7 2 ip, 掩 码 及 vlan 规 划...7 3 物 理 布 线 设 计...8

More information

Microsoft Word - vlsm and ip unnumbered.doc

Microsoft Word - vlsm and ip unnumbered.doc Part1:VLSM VLSM AND IP unnumbered 实验讲义 实验目的 : 使用两种不同的路由选择协议,IPv1 和 IPv2 来配置 VLSM, 并测试其功能 实验拓扑 : HUB2 department2 192.168.1.128/26 1602 1601 192.168.1.192/26 192.168.1.64/26 1720 2514/1703 192.168.1.0/26

More information

一.NETGEAR VPN防火墙产品介绍

一.NETGEAR VPN防火墙产品介绍 NETGEAR VPN NETGEAR 6 http://www.netgear.com.cn - 1 - NETGEAR VPN... 4 1.1 VPN...4 1.2 Dynamic Domain Name Service...4 1.3 Netgear VPN...4 Netgear VPN... 6 2.1 FVS318 to FVS318 IKE Main...7 2.1.1 A VPN

More information

F5270

F5270 Cisco 路 由 器 設 定 主 講 : 陳 建 民 本 章 提 要 4-1 Cisco 路 由 器 使 用 者 界 面 4-2 命 令 列 界 面 4-3 路 由 器 與 交 換 器 的 管 理 功 能 4-4 路 由 器 界 面 4-5 檢 視 儲 存 與 清 除 組 態 設 定 2 Cisco 路 由 器 3 4 5 6 Router physical characteristics 7 4-1

More information

Session Dan Gill 2 IP WAN WAN? Networker NSC-114 RST-271 NSC-211 : MTBF: MTTR: MTBF MTTR : MTBF? MTTR? MTTR MTTR MTTR MTBF MTTR Mom-and-apple-pie MTBF MTBF (UPS, ) Mom-and-apple-pie Increase MTBF MTBF?

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG --------------------------------------------TABLE OF CONTENTS------------------------------------------

More information

9 Internet 10 Internet

9 Internet 10 Internet 1 2 3 4 5 6 Internet 7 8 9 Internet 10 Internet 11 12 1 1.1 1.2 1.3 1.4 1.5 1.6 1.1 1.1.1 20 50 20 60 ARPANET ARPANET Internet 20 70 ISO International Organization for Standardization TCP/IP 20 90 Internet

More information

第3章

第3章 本 章 涵 盖 以 下 主 题 全 局 单 播 地 址 路 由 和 子 网 划 分 : 本 节 通 过 与 IPv4 相 比 较, 介 绍 了 IPv6 地 址 IPv4 路 由 的 概 念, 以 及 怎 样 进 行 IPv6 子 网 划 分 IPv6 全 局 单 播 地 址 的 分 配 : 本 节 探 讨 了 怎 样 将 全 局 单 播 地 址 分 配 到 主 机 或 其 他 设 备 上 IPv6

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

Microsoft Word - chp11NAT.doc

Microsoft Word - chp11NAT.doc 第 11 章 NAT Internet 技术的飞速发展, 使越来越多的用户加入到互联网, 因此 IP 地址短缺已成为一个十分突出的问题 NAT(Network Address Translation, 网络地址翻译 ) 是解决 IP 地址短缺的重要手段 11.1 NAT 概述 NAT 是一个 IETF 标准, 允许一个机构以一个地址出现在 Internet 上 NAT 技术使得一个私有网络可以通过

More information

网工新答案

网工新答案 2005 年 5 月 29 日 软 考 2005 年 上 半 年 网 络 工 程 师 上 午 试 题 ( 参 考 答 案 ) ( 特 别 声 明, 此 答 案 只 作 参 考 ) 本 文 是 经 过 三 审 后 的 CIU 网 工 上 午 参 考 答 案 ( 正 确 率 在 92%-95% 之 间, 因 为 种 种 原 因, 不 能 与 标 准 答 案 完 全 相 同, 请 大 家 理 解 ) 如

More information

untitled

untitled 7.1 7.1.1 IP R1 N N,R1,M IP 1 7.1.2 [Quidway]display ip routing Routing Tables: Destination/Mask proto pref Metric Nexthop Interface 0.0.0.0/0 Static 60 0 120.0.0.2 Serial0 8.0.0.0/8 RIP 100 3 120.0.0.2

More information

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli BYOD 204 2015 GoogleHicloud (Load Balance) Server Load Balance Link Load Balance Server Redirect 1. URL Redirect redirector URL redirect Real Server Client HTTP Real Server Web Client 2 (1) URL Redirect

More information

epub 30-12

epub 30-12 12 IP I P I P E s t a b l i s h e d I P I P l o c k - a n d - k e y V T Y 12.1 1) 2) D D R 3) 4) 5) 12.2 IP C i s c o 1) I P I P I P 402 CCIE 1 I P 0 0.0.0.0 1 3 150. 1. 1 1 ~ 255 150. 1. 1. 0 2) Inbound

More information

Microsoft Word - CCNA2_Exploration_instructor_40_CoverSheet.DOC

Microsoft Word - CCNA2_Exploration_instructor_40_CoverSheet.DOC 本 文 档 是 Cisco Systems, Inc. 的 专 有 财 产, 为 Cisco Networking Academy 讲 授 CCNA Exploration 路 由 协 议 和 概 念 课 程 的 教 师 专 用, 允 许 打 印 或 复 制 作 非 商 业 用 途 实 验 1.5.1: 网 络 布 线 和 基 本 路 由 器 配 置 ( 教 师 版 ) 拓 扑 图 地 址 分 配

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

第3章 计算机网络体系结构

第3章  计算机网络体系结构 第 3 章 计 算 机 网 络 体 系 结 构 本 章 内 容 计 算 机 的 网 络 体 系 结 构 网 络 参 考 模 型 五 层 网 络 参 考 模 型 1 3.1 计 算 机 网 络 体 系 结 构 发 展 历 程 分 层 原 理 基 本 概 念 2 发 展 历 程 网 络 体 系 结 构 提 出 的 背 景 计 算 机 网 络 的 复 杂 性 异 质 性 不 同 的 通 信 介 质 有 线

More information

DOS下常用的网络命令.PDF

DOS下常用的网络命令.PDF DOS .... 1.1... 1.2... DOS... 2.1 ARP... 2.2 Finger... 2.3 Ftp... 2.4 Nbtstat... 2.5 Netstat... 2.6 Ping... 2.7 Rcp... 2.8 Rexec... 2.9 Route... 2.10 Rsh... 2.11 Tftp... 2.12 Tracert... 1 1 1 1 1 2 3 4

More information

Microsoft Word - GB0-183.doc

Microsoft Word - GB0-183.doc HuaWei HuaWei-3Com Certificated Network Engineer Q&A Demo English: www.testinside.com BIG5: www.testinside.net GB: www.testinside.cn TestInside,help you pass any IT exam! 1. 三台路由器如图所示连接, 配置如下, 路由器 RTA

More information

bbs.vlan5.com

bbs.vlan5.com 了解和配置 ip unnumbered 命令 内容 前言前提条件需求使用的组件惯例什么是无编号接口? P 和未编号 P 配置示例同一主网, 不同子网不同的主网, 没有子网带有子网的主网, 没有子网的主网两个不同的主网和它们各自的子网相关信息 前言 本文档介绍无编号 P 的概念, 并提供几个配置示例以供参考 通过 ip unnumbered 配置命令, 您可以在串行接口上启用 P 处理, 而无需为该接口分配明确的

More information

Chap6.ppt

Chap6.ppt Computer Networks v4 cs.sjtu 12/21/12 6 Internet ftp://ftp.cs.sjtu.edu.cn/ybzhang 61 / 110 Computer Networks v4 cs.sjtu 12/21/12 ftp://ftp.cs.sjtu.edu.cn/ybzhang 62 / 110 Computer Networks v4 cs.sjtu 12/21/12

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

Cisco Lab - Switch

Cisco Lab - Switch Cisco Lab - Switch 2013.03.04 大綱 基礎網路模型 Hub / Switch Hub 工作原理 Switch 工作原理 Cisco Switch 基本操作 管理模式 控制模式 基本指令 基礎網路模型 Gateway Router/Firewall/NAT Device Server DHCP/DNS/Mail/FTP Hub/Switch Client PC Hub1 Hub2

More information

《计算机网络》实验指导书

《计算机网络》实验指导书 1 实 验 一 网 络 组 建 与 管 理 一. 实 验 目 的 1. 掌 握 平 行 双 绞 线 和 交 叉 双 绞 线 的 制 作 方 法 ( 初 级 ) 2. 掌 握 对 等 网 和 代 理 服 务 器 网 络 的 组 建 ( 初 级 ) 3. 会 用 ipconfig 和 ping 命 令 ( 初 级 ) 4. 掌 握 网 络 中 文 件 夹 共 享 和 打 印 机 共 享 ( 初 级 )

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : JN0-100 Title : Juniper Networks Certified Internet Associate (JNCIA-JUNOS) Version : Demo 1 / 10 1. Which major J-Web menu should you use

More information

財金資訊-80期.indd

財金資訊-80期.indd IPv6 / LINE YouTube TCP/IP TCP (Transmission Control Protocol) IP (Internet Protocol) (node) (address) IPv4 168.95.1.1 IPv4 1981 RFC 791 --IP IPv4 32 2 32 42 IP (Internet Service Provider ISP) IP IP IPv4

More information

思科交换机命令大全 基础配置 1. 从用户模式进入特权模式 S1>enable 2. 从特权模式进入全局配置模式 S1#configure terminal 3. 设置主机名 S1(config)#hostnameR1 4. 退出到特权模式 S1(config)#end 5. 退出到用户模式 S1#

思科交换机命令大全 基础配置 1. 从用户模式进入特权模式 S1>enable 2. 从特权模式进入全局配置模式 S1#configure terminal 3. 设置主机名 S1(config)#hostnameR1 4. 退出到特权模式 S1(config)#end 5. 退出到用户模式 S1# 思科交换机命令大全 基础配置 1. 从用户模式进入特权模式 S1>enable 2. 从特权模式进入全局配置模式 S1#configure terminal 3. 设置主机名 S1(config)#hostnameR1 4. 退出到特权模式 S1(config)#end 5. 退出到用户模式 S1#disable 6. 查看 MAC 地址表 S1#show mac-address-table 7.

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

More information

OSPF over IPSec及路由冗余

OSPF over IPSec及路由冗余 OSPF over IPSec 及路由冗余 版本 1.0 时间 2011 年 12 月 作者 胡丹丹 (ddhu@fortinet.com) 支持的版本 FortiOS v4.x 状态 草稿 第 1 页共 10 页 目录 1. 目的... 3 2. 环境介绍... 3 3.IPSec VPN 配置... 4 4.OSPF 配置... 5 4.1 GateA 配置... 5 4.2 GateB 配置...

More information

R3105+ ADSL

R3105+ ADSL ... 1 1 1... 1 1 2... 1... 3 2 1... 3 2 2... 3 2 3... 5 2 4... 5 2 4 1... 5... 7 3 1... 7 3 2... 8 3 2 1... 8 3 2 2... 9 3 3... 12 3 3 1... 13 3 3 2 WAN... 16 3 3 3 LAN... 21 3 3 4 NAT... 22 3 3 5... 24

More information

配置 Cisco 827 上带VPN IPSec NAT 超载的PPPoE

配置 Cisco 827 上带VPN IPSec NAT 超载的PPPoE 配置 Cisco 827 上带 VPN IPSec NAT 超载的 PPPoE 目录 简介开始使用前规则先决条件使用的组件配置网络图配置验证故障排除故障排除命令相关信息 简介 Cisco 827 路由器通常是 DSL 客户端前置设备 (CPE) 在此示例配置中, 思科 827 配置用于以太网点对点协议 (PPPoE 的 ), 用作使用思科 3600 路由器的 LAN-to-LAN IPSec 隧道中的对端

More information

第 1 部 分 : 检 查 网 络 要 求 在 第 1 部 分 中, 您 将 研 究 使 用 172.16.128.0/17 网 络 地 址 为 拓 扑 图 中 显 示 的 网 络 开 发 VLSM 地 址 方 案 的 网 络 要 求 注 意 : 您 可 以 使 用 Windows 计 算 器 应

第 1 部 分 : 检 查 网 络 要 求 在 第 1 部 分 中, 您 将 研 究 使 用 172.16.128.0/17 网 络 地 址 为 拓 扑 图 中 显 示 的 网 络 开 发 VLSM 地 址 方 案 的 网 络 要 求 注 意 : 您 可 以 使 用 Windows 计 算 器 应 拓 扑 目 标 第 1 部 分 : 检 查 网 络 要 求 第 2 部 分 : 设 计 VLSM 地 址 方 案 第 3 部 分 : 布 线 和 配 置 IPv4 网 络 背 景 / 场 景 可 变 长 度 子 网 掩 码 (VLSM) 旨 在 避 免 浪 费 IP 地 址 使 用 VLSM, 会 对 网 络 多 次 进 行 子 网 划 分 此 过 程 可 重 复 多 次, 从 而 根 据 每 个

More information

ChinaITLab 网校名师原创作品系列 版权所有, 盗版必究 目录 目录... I BOSON NETSIM 入门进阶 实战 BOSON NETSIM 基本实验 路由器基本实验 - 静态路由 缺省路由配置 交换机基本实验 -VLAN VTP TRUNK

ChinaITLab 网校名师原创作品系列 版权所有, 盗版必究 目录 目录... I BOSON NETSIM 入门进阶 实战 BOSON NETSIM 基本实验 路由器基本实验 - 静态路由 缺省路由配置 交换机基本实验 -VLAN VTP TRUNK 目录 目录... I BOSON NETSIM 入门进阶 实战...1 1 BOSON NETSIM 基本实验...1 1.1 路由器基本实验 - 静态路由 缺省路由配置...1 1.2 交换机基本实验 -VLAN VTP TRUNK...7 1.3 远程访问基本实验 -PPP CHAP...11 2 BOSON NETSIM 进阶实验...15 2.1 ISDN 传统 DDR 配置 (Legacy

More information

目录 目录... I BOSON NETSIM 入门进阶 实战 BOSON NETSIM 基本实验 路由器基本实验 - 静态路由 缺省路由配置 交换机基本实验 -VLAN VTP TRUNK 远程访问基本实验 -PPP CHAP...11

目录 目录... I BOSON NETSIM 入门进阶 实战 BOSON NETSIM 基本实验 路由器基本实验 - 静态路由 缺省路由配置 交换机基本实验 -VLAN VTP TRUNK 远程访问基本实验 -PPP CHAP...11 目录 目录... I BOSON NETSIM 入门进阶 实战...1 1 BOSON NETSIM 基本实验...1 1.1 路由器基本实验 - 静态路由 缺省路由配置...1 1.2 交换机基本实验 -VLAN VTP TRUNK...7 1.3 远程访问基本实验 -PPP CHAP...11 2 BOSON NETSIM 进阶实验...15 2.1 ISDN 传统 DDR 配置 (Legacy

More information

Microsoft Word - chp8帧中继.doc

Microsoft Word - chp8帧中继.doc 第 8 章帧中继 帧中继线路是中小企业常用的广域网线路, 其通信费用较低 由于帧中继技术的一些特殊性使得帧中继的配置较为复杂, 特别是在帧中继上运行路由协议时更是如此 作为入门, 对帧中继的理解应着重放在 DLCI PVC 帧中继映射和子接口等概念上 本章通过几个实验详细介绍了帧中继的关键概念 8.1.1 什么是帧中继 8.1 帧中继简介 帧中继 (Frame Relay, FR) 是面向连接的第二层传输协议,

More information

Packet Tracer实验集

Packet  Tracer实验集 Packet Tracer 1 实验集 Packet Tracer 实验集 姚俊编著 目 录 目 录 第一部分路由器实验... 1 实验 1-1. 路由器的 console 口访问配置... 1 实验 1-2. 路由器的 telnet 访问配置... 5 实验 1-3. CLI 的使用与 IOS 基本命令...8 实验 1-4. 配置文件的管理和 IOS 的管理... 15 实验 1-5. 密码恢复和

More information

一、选择题

一、选择题 计 算 机 网 络 基 础 第 7 章 练 习 思 考 与 认 识 活 动 一 选 择 题 1. 下 面 命 令 中, 用 于 检 查 WINDOWS2000 下 TCP/IP 配 置 信 息 的 是 ( ) A. cmd B. nslookup C. ipconfig D. ping 2. 内 部 网 关 协 议 RIP 是 一 种 广 泛 使 用 的 基 于 距 离 矢 量 算 法 的 协 议

More information

基于点到点链路的 OSPF 的初始配置

基于点到点链路的 OSPF 的初始配置 基于点到点链路的 OSPF 的初始配置 目录 简介先决条件要求使用的组件规则带有串行接口 IP 地址的点对点链路上的 OSPF 网络图配置带有未编号接口的点对点链路上的 OSPF 网络图配置验证验证带有串行接口 IP 地址的 OSPF 的配置验证带有未编号接口的 OSPF 的配置故障排除相关信息 简介 在高级数据链路控制 (HDLC) 和点对点协议 (PPP) 等点对点链路上, 开放最短路径优先 (OSPF)

More information

Microsoft Word - chp19IS-IS.doc

Microsoft Word - chp19IS-IS.doc 第 19 章 IS-IS 近几年来, 随着在 ISP 中的广泛应用,IS(Intermediate System, 中间系统 )-IS 路由协议已经变得很普及 IS-IS 最初是由国际标准化组织制定的一个 OSI( 开放系统互联 ) 路由协议, 被设计成工作在 OSI 无连接网络服务 (CLNS) 的环境中 19.1.1 IS-IS 特点 19.1 IS-IS 概述 IS-IS 是一个非常灵活的路由协议,

More information

Microsoft Word - NBMA中的OSPF网络类型.doc

Microsoft Word - NBMA中的OSPF网络类型.doc 文档名称 :NBMA 中的 OSPF 网络类型 文档分类 : 路由技术 撰 写 :Magic 收档日期 :2008-05-01-1 - OSPF 在 NBMA 中的五种运行模式 : OSPF 模式 首选 NBMA 子网地址 Hello 定时器 广播 全互联或部分互联 相同 10s 非广播 全互联或部分互联 相同 30s 点到多点 部分互联或星型 相同 30s 点到多点 非广播 部分互联或星型 相同

More information

ebook71-13

ebook71-13 13 I S P Internet 13. 2. 1 k p p p P P P 13. 2. 2 1 3. 2. 3 k p p p 1 3. 2. 4 l i n u x c o n f P P P 13. 2. 5 p p p s e t u p 13. 2. 6 p p p s e t u p P P P 13. 2. 7 1 3. 2. 8 C a l d e r a G U I 13.

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : JN0-130 Title : Juniper Juniper Networks Certified Internet Specialist.e(JNCIS-E) Version : Demo 1 / 10 1. Which CLI command is used to set

More information

ext-web-auth-wlc.pdf

ext-web-auth-wlc.pdf 使 用 无 线 局 域 网 控 制 器 的 外 部 Web 身 份 验 证 配 置 示 例 目 录 简 介 先 决 条 件 要 求 使 用 的 组 件 规 则 背 景 信 息 外 部 Web 身 份 验 证 过 程 网 络 设 置 配 置 为 来 宾 用 户 创 建 动 态 接 口 创 建 预 先 身 份 验 证 ACL 在 WLC 上 为 来 宾 用 户 创 建 本 地 数 据 库 配 置 外 部

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

Single Area OSPF

Single Area OSPF Single Area OSPF 实验目的 了解和掌握 OSPF 的原理, 熟悉 OSPF 配置步骤 懂得如何配置 OSPF router ID,update timers, authentication, 了解 DR/BDR 选举过程, 以及在 multi-access 网络和帧中继网络上点到多点的 OSPF 配置 基本概念及实验原理 OSPF 数据包的五种类型 : Type 1- Hello Type

More information

SEC-220

SEC-220 Session CERT/CC 60000 50000 40000 52,658 30000 26,829 20000 10000 0 2,412 1995 1999 2000 2001 Q1, 2002 Source: http://www.cert.org/stats/ CERT/CC 3000 2500 2000 2,437 1500 1000 500 0 171 1,065 1995

More information

目录 简介... 3 BGP 重发布进 OSPF 环境拓扑图... 3 BGP 重发布进 OSPF 路由过滤... 4 FGT200B 关键配置... 4 接口 IP 配置... 4 Route-Map... 4 BGP 的配置... 5 FGT100E 关键配置... 5 接口 IP 及 BGP

目录 简介... 3 BGP 重发布进 OSPF 环境拓扑图... 3 BGP 重发布进 OSPF 路由过滤... 4 FGT200B 关键配置... 4 接口 IP 配置... 4 Route-Map... 4 BGP 的配置... 5 FGT100E 关键配置... 5 接口 IP 及 BGP BGP 与 OSPF 之间重发布时使用 Route-Map 进行路由过滤 版本 1.0 时间 2017 年 9 月 5 日星期二 支持的版本 FortiGate v5.0 v5.2 v5.4 v5.6 作者 状态 反馈 刘康明 已审核 support_cn@fortinet.com 目录 简介... 3 BGP 重发布进 OSPF 环境拓扑图... 3 BGP 重发布进 OSPF 路由过滤... 4

More information

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP #

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP # iptables 默认安全规则脚本 一 #nat 路由器 ( 一 ) 允许路由 # iptables -A FORWARD -i eth0 -o eth1 -j ACCEPT ( 二 ) DNAT 与端口转发 1 启用 DNAT 转发 # iptables -t nat -A PREROUTING -p tcp -d 192.168.102.37 dprot 422 -j DNAT to-destination

More information

09.实验九:内部网关协议RIP与OSPF

09.实验九:内部网关协议RIP与OSPF 计算机网络 实验指导 实验九 : 内部网关协议 RIP 与 OSPF 一 实验目的 1 进一步理解路由器的工作原理; 2 掌握 RIP 的基本原理和概念 ; 3 掌握 OSPF 的基本原理和概念 ; 4 掌握基于 GNS3 仿真平台进行网络实验的方法 二 实验学时 2 学时 三 实验类型 综合性 四 实验需求 1 硬件每人配备计算机 1 台, 计算机接入实验室局域网, 每小组配备交换机 2 台, 路由器

More information

Microsoft PowerPoint - 数据通信-ch1.ppt

Microsoft PowerPoint - 数据通信-ch1.ppt 主 要 内 容 与 基 本 要 求 主 要 内 容 数 据 通 信 与 计 算 机 网 络 计 算 机 网 络 的 发 展 过 程 分 类 以 及 主 要 性 能 指 标 ; 分 组 交 换 的 基 本 原 理 及 其 与 电 路 交 换 报 文 交 换 的 联 系 与 区 别 ; 计 算 机 网 络 的 协 议 与 体 系 结 构 第 1 章 概 述 基 本 要 求 掌 握 分 组 交 换 电 路

More information

PL600 IPPBX 用户手册_V2.0_.doc

PL600 IPPBX 用户手册_V2.0_.doc VoIP 网 络 交 换 机 PL-600 IPPBX 用 户 手 册 深 圳 普 联 讯 电 子 科 技 有 限 公 司 版 权 所 有 2009 深 圳 市 普 联 讯 电 子 科 技 有 限 公 司 第 1 共 1 目 录 1. 前 言...3 2. 安 装 前 准 备...3 3. 硬 件 安 装...4 4. 登 陆 及 一 般 操 作 介 绍...4 5. 基 本 配 置...6 6.

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

升 级 过 程 概 述 Cisco 集 中 无 线 网 络 架 构 中,AP 工 作 在 瘦 AP(LAP) 模 式 LAP 关 联 到 无 线 控 制 器 (WLC), 控 制 器 管 理 着 配 置 软 件 升 级 以 及 802.1X 认 证 等 控 制 处 理 ; 此 外, 控 制 器 还

升 级 过 程 概 述 Cisco 集 中 无 线 网 络 架 构 中,AP 工 作 在 瘦 AP(LAP) 模 式 LAP 关 联 到 无 线 控 制 器 (WLC), 控 制 器 管 理 着 配 置 软 件 升 级 以 及 802.1X 认 证 等 控 制 处 理 ; 此 外, 控 制 器 还 本 文 档 将 通 过 以 下 章 节 描 述 如 何 将 胖 AP 升 级 为 瘦 AP, 并 与 WLC 进 行 通 信 : 升 级 过 程 概 述... 3 比 要 条 件... 3 重 要 事 项... 5 升 级 准 备 工 作... 5 基 础 环 境 准 备... 6 使 用 DHCP Option 43 参 数... 7 控 制 器 的 准 备 工 作... 9 升 级 步 骤...

More information

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在 计 算 机 网 络 ( 第 4 版 ) 课 件 第 1 章 计 算 机 网 络 概 述 郭 庆 北 Ise_guoqb@ujn.edu.cn 2009-02-25 第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特

More information

精 品 库 我 们 的 都 是 精 品 _www.jingpinwenku.com 根 据 图 中 信 息 标 号 为 2 的 方 格 中 的 内 容 为 A)S=59.171.1,1234 D=133.2.1.1,80 B)S=59.67.1.1,1234 D=10.0.1.1,80 C)S=13

精 品 库 我 们 的 都 是 精 品 _www.jingpinwenku.com 根 据 图 中 信 息 标 号 为 2 的 方 格 中 的 内 容 为 A)S=59.171.1,1234 D=133.2.1.1,80 B)S=59.67.1.1,1234 D=10.0.1.1,80 C)S=13 一 选 择 题 2010 年 3 月 计 算 机 等 级 考 试 四 级 网 络 工 程 师 笔 试 真 题 (1)TTC 标 准 OC-3 的 传 输 速 率 为 A) 512.4 Mbps B)155.52 Mbps C)622.08 Mbps D). Mbps (2)102.11n 将 传 输 速 率 提 高 到 A)11 Mbps B)22 Mbps C)54 Mbps D)100 Mbps

More information

动态路由选择协议、RIP

动态路由选择协议、RIP 学习沉淀成长分享 动态路由协议 RIP 红茶三杯 ( 朱 SIR) 微博 : t.sina.com/vinsoney Latest update: 2012-06-01 课程目标 动态路由协议概述 RIP RIP 基础实验 动态路由协议概述 什么是路由 什么是动态路由协议 动态路由协议的分类 什么是路由 192.168.10.0/24 172.16.1.0/24 e0 s0 Protocol Connected

More information

Microsoft Word - chp20路由重分布.doc

Microsoft Word - chp20路由重分布.doc 第 20 章路由重分布 当许多运行多路由的网络要集成到一起时, 必须在这些不同的路由选择协议之间共享路由信息 在路由选择协议之间交换路由信息的过程被称为路由重分布 (Route Redistribution) 20.1 路由重分布概述 路由重分布为在同一个互联网络中高效地支持多种路由协议提供了可能, 执行路由重分布的路由器被称为边界路由器, 因为它们位于两个或多个自治系统的边界上 路由重分布时计量单位和管理距离是必须要考虑的

More information

bingdian001.com

bingdian001.com 1... 1 1.1... 1 1.2... 1 1.3... 1 1.4... 1 1.5... 1 1.6... 1 2... 1 2.1... 1 2.2... 2 2.3... 2 3... 2 4... 3 4.1... 3 4.1.1... 3 1.... 3 2.... 3 3.... 3 4.... 3 5.... 3 6.... 3 7.... 3 8.... 4 9.... 4

More information

指定静态路由的下一跳IP地址

指定静态路由的下一跳IP地址 指定静态路由的下一跳 IP 地址 目录 简介背景信息对广播接口的静态路由浮动静态路由示例问题解决方案结论 简介 本文描述静态路由基本概念 问题场景用于为了展示指定接口下一跳 IP 地址可以被到达的情况变得理想, 当您配置静态路由时 失败可能导致不需要的行为和一个残破的网络状况 背景信息 由于各种各样的原因使用静态路由并且是常用的, 当没有动态路由对目的 IP 地址时, 或者, 当您要动态地改写获取的路由时

More information

QL1880new2.PDF

QL1880new2.PDF ADSL Modem 1 MODEM 56K MODEM 128K ISDN INTERNET ADSL Modem VOD ADSL ADSL 2 1.1 ADSL 1.2 1.3 KM300A 2.1 2.2 2.3 2.4 2.5 KM300A 2.6 web 2.7 1.1ADSL 1.2 1.3 2.1 ADSL 2.2 ADSL 3 ADSL KM300A ADSL KM300A DIY

More information

PIC_SERVER (11) SMTP ( ) ( ) PIC_SERVER (10) SMTP PIC_SERVER (event driven) PIC_SERVER SMTP 1. E-

PIC_SERVER (11) SMTP  ( ) ( ) PIC_SERVER (10) SMTP  PIC_SERVER (event driven)  PIC_SERVER SMTP  1.  E- (2005-02-01) (2005-04-28) PIC_SERVER (10) SMTP E-mail PIC_SERVER (event driven) E-mail PIC_SERVER SMTP E-mail 1. E-mail E-mail 1 (1) (2) (3) (4) 1 1. 2 E-mail A E-mail B E-mail SMTP(Simple Mail Transfer

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

工程师培训

工程师培训 .1 Quidway 1 .2.2.1 ATM 2 .2.2 ( LAN ) ( WAN ) ( CONSOLE ) 3 .3.3.1 LAN Ethernet Token Bus Token Ring...... Local Area Network LAN 1 2 3 LAN LAN IBM LAN 4 .3.2 10M 100M 1000M 10Mbps 100Mbps 1000Mbps IEEE

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Procedural Lab Template, Student Version, Required Components

Procedural Lab Template, Student Version, Required Components 拓 樸 圖 位 址 配 置 表 設 備 介 面 IP 位 址 子 網 路 遮 罩 預 設 閘 道 R1 Fa0/0 192.168.1.1 255.255.255.0 不 適 用 S0/0/0 192.168.2.1 255.255.255.0 不 適 用 R2 Fa0/0 192.168.3.1 255.255.255.0 不 適 用 S0/0/0 192.168.2.2 255.255.255.0

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information