预览加载中,请您耐心等待几秒...
1/4
2/4
3/4
4/4

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

静态路由分析与配置实验目的使1.1.1.0/24、2.2.2.0/24、3.3.3.0/24网络之间能够互相通信。(1)步骤1:在各路由器上配置IP地址、保证其直连链路的连通静态路由分析与配置详解教程R1(config)#intloopback0//进入本地回环网口0R1(config-if)#ipaddress1.1.1.1255.255.255.0//设置本地回环网口iP地址R1(config)#ints0/0R1(config-if)#ipaddress192.168.12.1255.255.255.0//设置S0/0口IP地址R1(config-if)#noshutdown//打开端口R2(config)#intloopback0R2(config-if)#ipaddress2.2.2.2255.255.255.0R2(config)#ints0/0R2(config-if)#clockrate128000R2(config-if)#ipaddress192.168.12.2255.255.255.0R2(config-if)#noshutdownR2(config)#ints0/1R2(config-if)#clockrate128000//设置时钟R2(config-if)#ipaddress192.168.23.2255.255.255.0R2(config-if)#noshutdownR3(config)#intloopback0R3(config-if)#ipaddress3.3.3.3255.255.255.0R3(config)#ints0/0/1R3(config-if)#ipaddress192.168.23.3255.255.255.0R3(config-if)#noshutdown(2)R1上配置静态路由R1(config)#iproute2.2.2.0255.255.255.0s0/0/0//下一跳为接口形式,s0/0是点对点的链路,注意应该是R1上的s0/0接口R1(config)#iproute3.3.3.0255.255.255.0192.168.12.2//下一跳为IP地址形式,192.168.12.2是R2上的IP地址(3)R2上配置静态路由R2(config)#iproute1.1.1.0255.255.255.0s0/0R2(config)#iproute3.3.3.0255.255.255.0s0/1(4)R3上配置静态路由R3(config)#iproute1.1.1.0255.255.255.0s0/1R3(config)#iproute2.2.2.0255.255.255.0s0/1(5)查看R1,R2,R3路由器上的路由表,查看能否学习到相关的路由,以R1检查为例并给出提示Router#showiprouteCodes:C-connected,S-static,R-RIP,M-mobile,B-BGPD-EIGRP,EX-EIGRPexternal,O-OSPF,IA-OSPFinterareaN1-OSPFNSSAexternaltype1,N2-OSPFNSSAexternaltype2E1-OSPFexternaltype1,E2-OSPFexternaltype2i-IS-IS,su-IS-ISsummary,L1-IS-ISlevel-1,L2-IS-ISlevel-2ia-IS-ISinterarea,*-candidatedefault,U-per-userstaticrouteo-ODR,P-periodicdownloadedstaticrouteGatewayoflastresortisnotsetC192.168.12.0/24isdirectlyconnected,Serial0/01.0.0.0/24issubnetted,1subnetsC1.1.1.0isdirectlyconnected,Loopback02.0.0.0/24issubnetted,1subnetsS2.2.2.0isdirectlyconnected,Serial0/03.0.0.0/24issubnetted,1subnetsS3.3.3.0[1/0]via192.168.12.2(6)使用ping检查是否连接成功,Router#ping2.2.2.2Typeescapesequencetoabort.Sending5,100-byteICMPEchosto2.2.2.2,timeoutis2seconds:!!!!!Successrateis100percent(5/5),round-tripmin/avg/max=8/71/120msRouter#至此我们的实验完成