分享
分销 收藏 举报 申诉 / 17
播放页_导航下方通栏广告

类型配置帧中继网络.docx

  • 上传人:天****
  • 文档编号:2334021
  • 上传时间:2024-05-28
  • 格式:DOCX
  • 页数:17
  • 大小:937.86KB
  • 下载积分:8 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    配置 中继 网络
    资源描述:
    ______________________________________________________________________________________________________________ Packet Tracer 5.3建构CCNA实验攻略(13)——帧中继Frame Relay Packet Tracer 5.3是一款非常不错的Cisco(思科)网络设备模拟器,对于想考思科初级认证(如CCNA)的朋友们来说,Packet Tracer 5.3是非常不错的选择。通常我们周围并没有那么多思科的设备供我们学习调试,参加培训费用很贵,上机实践的机会还是有限的,利用Packet Tracer 5.3练习思科IOS操作命令很不错的。近日,在网上下载了思科CCNA640-802指导用书,打算根据此教程与诸位网友共同分享Packet Tracer 5.3的使用方法与技巧,也借此抛砖引玉。   帧中继是一种用于连接计算机系统的面向分组的通信方法。它主要用在公共或专用网上的局域网互联以及广域网连接。大多数公共电信局都提供帧中继服务,把它作为建立高性能的虚拟广域连接的一种途径。帧中继是进入带宽范围从56Kbps到1.544Mbps的广域分组交换网的用户接口。帧中继是从综合业务数字网中发展起来的,并在1984年推荐为国际电话电报咨询委员会(CCITT)的一项标准,另外,由美国国家标准协会授权的美国TIS标准委员会也对帧中继做了一些初步工作。   数据链路连接标识符(DLCI) 这个信息包含标识号,它标识多路复用到通道的逻辑连结。帧中继交换机将两端的DLCI关联起来,它是帧中继帧格式中地字段的一个重要部分之一,这是个6位标识,表示正在进行的客户和服务器之间的连接,用于RFCOMM 层。 帧中继使用DLCI来标识DTE和服务商交换机之间的虚电路。DLCI字段的长度一般为10bit,但也可扩展为16bit,前者用二字节地址字段,后者是三字节地址字段。23bit用四字节地址字段。DLCI值用于标识永久虚电路(PVC),呼叫控制或管理信息。DLCI只具有本地意义。   一、使用Packet Tracer 5.3构建帧中继仿真   添加三个2811路由器和一个云 图一 图二 给2811添加一个具有串口的模块 图三 图四 把路由器2811的串口与云的串口相连,路由器的串口为DTE 图五 实验拓扑图及IP地址、DLCI分配   二、配置Frame Relay 以Router2为例,其它两个路由器相似,\\后是人为添加的注释,在实际配置时不存在 Router>en   \\进入特权配置模式 Router#conf t  \\进入全局配置模式 Enter configuration commands, one per line. End with CNTL/Z. Router(config)#no ip domain-lookup \\取消名称解析 Router(config)#hostname Router2  \\配置路由器的名字 Router2(config)#int fa0/1      \\进入接口配置模式 Router2(config-if)#ip address 172.18.1.1 255.255.255.0  \\配置ip地址 Router2(config-if)#no shut  \\激活端口 %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up Router2(config-if)#int serial0/3/0 Router2(config-if)#encapsulation frame-relay  \\对串口serial0/3/0进行frame-relay封装 Router2(config-if)#no shut %LINK-5-CHANGED: Interface Serial0/3/0, changed state to up Router2(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0, changed state to up Router2(config-if)#interface serial0/3/0.1 point-to-point  \\进入串口的子接口配置模式 %LINK-5-CHANGED: Interface Serial0/3/0.1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0.1, changed state to upRouter2 (config-subif)#ip address 192.168.1.1 255.255.255.0   \\为子接口配置IP地址 Router2(config-subif)#description Link Router1 DLCI 30  \\为子接口添加描述 Router2(config-subif)#frame-relay interface-dlci 40     \\配置DLCI Router2(config-subif)#interface serial0/3/0.2 point-to-point %LINK-5-CHANGED: Interface Serial0/3/0.2, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0.2, changed state to upRouter2 (config-subif)#ip address 192.168.3.1 255.255.255.0 Router2(config-subif)#description link to Router0 DLCI 20 Router2(config-subif)#frame-relay interface-dlci 41 Router2(config-subif)#end %SYS-5-CONFIG_I: Configured from console by console Router2#conf t Enter configuration commands, one per line. End with CNTL/Z. Router2(config)#router eigrp 100      \\在路由器上启用EIGRP路由协议 Router2(config-router)#network 172.18.0.0  \\通告与自己直接想连的网段 Router2(config-router)#network 192.168.3.0 Router2(config-router)#network 192.168.1.0 Router2(config-router)# %SYS-5-CONFIG_I: Configured from console by console Router2#copy running-config startup-config  \\保存配置 Destination filename [startup-config]? Building configuration... [OK] Router2# 路由器Router0的配置: Router0#sh running-config Building configuration... Current configuration : 830 bytes ! version 12.4 no service password-encryption ! hostname Router0 ! ! ! ! ! ip ssh version 1 no ip domain-lookup ! ! interface FastEthernet0/0 no ip address duplex auto speed auto shutdown ! interface FastEthernet0/1 ip address 172.16.1.1 255.255.255.0 duplex auto speed auto ! interface Serial0/3/0 no ip address encapsulation frame-relay ! interface Serial0/3/0.1 point-to-point description Link to Router 2 ip address 192.168.3.2 255.255.255.0 frame-relay interface-dlci 20 ! interface Serial0/3/0.2 point-to-point description Link to Router1 ip address 192.168.2.2 255.255.255.0 frame-relay interface-dlci 21 ! interface Vlan1 no ip address shutdown ! router eigrp 100 network 172.16.0.0 network 192.168.3.0 network 192.168.2.0 auto-summary ! ip classless ! ! ! ! ! line con 0 line vty 0 4 login ! ! end 路由器Router1的配置 Router1#sh running-config Building configuration... Current configuration : 843 bytes ! version 12.4 no service password-encryption ! hostname Router1 ! ! ! ! ! ip ssh version 1 no ip domain-lookup ! ! interface FastEthernet0/0 no ip address duplex auto speed auto shutdown ! interface FastEthernet0/1 ip address 172.17.1.1 255.255.255.0 duplex auto speed auto ! interface Serial0/3/0 no ip address encapsulation frame-relay ! interface Serial0/3/0.1 point-to-point description link to Router2 DLCI40 ip address 192.168.1.2 255.255.255.0 frame-relay interface-dlci 30 ! interface Serial0/3/0.2 point-to-point description link to router0 DLCI21 ip address 192.168.2.1 255.255.255.0 frame-relay interface-dlci 31 ! interface Vlan1 no ip address shutdown ! router eigrp 100 network 192.168.1.0 network 192.168.2.0 network 172.17.0.0 auto-summary ! ip classless ! ! ! ! ! line con 0 line vty 0 4 login ! ! end 路由器Router2的配置 Router2#sh running-config Building configuration... Current configuration : 841 bytes ! version 12.4 no service password-encryption ! hostname Router2 ! ! ! ! ! ip ssh version 1 no ip domain-lookup ! ! interface FastEthernet0/0 no ip address duplex auto speed auto shutdown ! interface FastEthernet0/1 ip address 172.18.1.1 255.255.255.0 duplex auto speed auto ! interface Serial0/3/0 no ip address encapsulation frame-relay ! interface Serial0/3/0.1 point-to-point description Link Router1 DLCI 30 ip address 192.168.1.1 255.255.255.0 frame-relay interface-dlci 40 ! interface Serial0/3/0.2 point-to-point description link to Router0 DLCI20 ip address 192.168.3.1 255.255.255.0 frame-relay interface-dlci 41 ! interface Vlan1 no ip address shutdown ! router eigrp 100 network 172.18.0.0 network 192.168.3.0 network 192.168.1.0 auto-summary ! ip classless ! ! ! ! ! line con 0 line vty 0 4 login ! ! end 路由器配置完毕后,还需要配置Cloud0。 图六 根据路由器的相关配置,给Cloud0的serial0配置DLCI及LMI类型 图七 根据路由器的相关配置,给Cloud0的serial1配置DLCI及LMI类型 图八 根据路由器的相关配置,给Cloud0的serial2配置DLCI及LMI类型 图九 根据路由器的相关配置,配置Cloud0的Frame Relay   三、配置各个计算机,并使用ping命令校验网络的连通性 pc0 PC>ipconfig IP Address......................: 172.16.1.2 Subnet Mask.....................: 255.255.255.0 Default Gateway.................: 172.16.1.1 PC>ping 192.168.1.1 Pinging 192.168.1.1 with 32 bytes of data: Reply from 192.168.1.1: bytes=32 time=141ms TTL=254 Reply from 192.168.1.1: bytes=32 time=110ms TTL=254 Reply from 192.168.1.1: bytes=32 time=143ms TTL=254 Reply from 192.168.1.1: bytes=32 time=110ms TTL=254 Ping statistics for 192.168.1.1:     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds:     Minimum = 110ms, Maximum = 143ms, Average = 126ms PC>ping 192.168.2.2 Pinging 192.168.2.2 with 32 bytes of data: Reply from 192.168.2.2: bytes=32 time=62ms TTL=255 Reply from 192.168.2.2: bytes=32 time=62ms TTL=255 Reply from 192.168.2.2: bytes=32 time=47ms TTL=255 Reply from 192.168.2.2: bytes=32 time=63ms TTL=255 Ping statistics for 192.168.2.2:     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds:     Minimum = 47ms, Maximum = 63ms, Average = 58ms PC>ping 192.168.3.1 Pinging 192.168.3.1 with 32 bytes of data: Reply from 192.168.3.1: bytes=32 time=109ms TTL=254 Reply from 192.168.3.1: bytes=32 time=125ms TTL=254 Reply from 192.168.3.1: bytes=32 time=93ms TTL=254 Reply from 192.168.3.1: bytes=32 time=94ms TTL=254 Ping statistics for 192.168.3.1:     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds:     Minimum = 93ms, Maximum = 125ms, Average = 105ms PC>ping 172.17.1.1 Pinging 172.17.1.1 with 32 bytes of data: Reply from 172.17.1.1: bytes=32 time=110ms TTL=254 Reply from 172.17.1.1: bytes=32 time=112ms TTL=254 Reply from 172.17.1.1: bytes=32 time=123ms TTL=254 Reply from 172.17.1.1: bytes=32 time=110ms TTL=254 Ping statistics for 172.17.1.1:     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds:     Minimum = 110ms, Maximum = 123ms, Average = 113ms PC>ping 172.18.1.1 Pinging 172.18.1.1 with 32 bytes of data: Reply from 172.18.1.1: bytes=32 time=140ms TTL=254 Reply from 172.18.1.1: bytes=32 time=109ms TTL=254 Reply from 172.18.1.1: bytes=32 time=110ms TTL=254 Reply from 172.18.1.1: bytes=32 time=125ms TTL=254 Ping statistics for 172.18.1.1:     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds:     Minimum = 109ms, Maximum = 140ms, Average = 121ms Welcome To Download !!! 欢迎您的下载,资料仅供参考! 精品资料
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:配置帧中继网络.docx
    链接地址:https://www.zixin.com.cn/doc/2334021.html
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork