1、网络教程广域网协议于广辉大连理工大学网络中心第1页,共25页。课程安排n点到点专线n帧中继协议nISDN第2页,共25页。点到点专线n常见的广域网协议有,Link Access Procedure on the D channel(LAPD),High-Level Data Link Control(HDLC),和Point-to-Point Protocol(PPP)。他们都具有以下的功能:nLAPB,HDLC和PPP都提供了数据通过单一的点到点的串行连接的投递。nLAPB,HDLC和PPP都可以在同步串行接口上投递数据。(PPP也可以在异步接口上使用)第3页,共25页。点到点专线n帧是任何
2、同步数据链路协议的核心特征。每个协议都对帧进行定义,所以接收的工作站知道哪里是帧的开始,头中的地址是什么,以及数据开始的位置。n同步连接通常在路由器之间使用。同不简单的说就是在线路两端发送和接收信号时要收时序的影响。这就意味着两端都要同意使用某种速度,但是如果要让所有的设备都真正的按同样速度操作,代价是相当昂贵的,所以一般让设备和某个时钟源的速率同步。第4页,共25页。广域网术语项目定义同步(synchronous)字节流受时序的影响。通俗的说,串行链路的两端试图采用同样的速度通信。但是很难制造出速度完全相同的设备,所以两端的设备只能按照同样的时钟源调整自己的设备。异步(asynchronou
3、s)不需要时序的影响。通俗的说,两端都同意采用同样的传输速度,但是它们并不检查和调整自己的速率,即使它们的速度有轻微的不同。然而,每次传输只发送一个比特,所以时钟速度并不是太大的问题。每个比特开始的时候由一个“start bit”发出信号。时钟源(clock source)当使用同步连接时,其他设备将时钟调整到和它相同的设备。第5页,共25页。广域网术语项目定义DSU/CSUData Services Unit and Channel Services Unit.用在数字电路两端到电信公司的接口设备。路由器通常使用一个短的串行电缆连接到DSU/CSU上,DSU/CSU上连接从电信公司来的电线。
4、路由器使用连接的DSU/CSU作为时钟源。Telco电信公司4-wire circuit从电信公司来的四芯的线路,通常是两对双绞线。每对用来在一个方向发送数据,所以四芯电路允许全双工的通信。2-wire circuit从电信公司来的两芯的线路,通常是一对双绞线。2芯电路只允许半双公通信。T/1允许1.544Mbps数据传输的线路。(U.S.)T/1 mux将一条T/1电路复用成24条不同的64kbps电路。(U.S.)E/12.048Mbps,可以复用成32个64Kbps信道。第6页,共25页。各种点到点通信协议的不同ProtocolError CorrectionArchitected Ty
5、pe FieldOther AttributesSDLC(Synchronous Data Link Control)YesNoneSupport multipoint links;assumes SNA header occurs after the SDLC headerLAPB(Link Access Procedure Balanced)YesNoneSpec assumes single configurable protocol after LAPB.Used mainly with X.25.Cisco uses a propriedary type field to suppo
6、rt multiprotocol traffic.LAPD(Link Access Procedure on the D Channel)NoNoNot used between routers.Used on D channel from router to ISDN switch for signaling.第7页,共25页。各种点到点通信协议的不同ProtocolError CorrectionArchitected Type FieldOther AttributesHDLC(High-Level Data Link Control)NoNoCiscos default on seri
7、al links.Cisco uses a proprietary type field to support mulitprotocol traffic.PPP(Point-to-Point Protocol)Allows user to choose whether error correction is performed;correction uses LAPBYesMeant for multiprotocol interoperability from its inception,unlike all the others.PPP also support asynchronous
8、 communication.第8页,共25页。HDLC和PPP配置Router A interface serial 0 encapsulation ppp.later,changed to.interface serial 0 encapsulation hdlcRouter B interface serial 0 encapsulation ppp.later,changed to.interface serial 0 encapsulation hdlc第9页,共25页。PPPFunctionNameDescriptionError detectionLink Quality Mon
9、itoring当错误大于一定的百分比时可以停止使用一条线路。Looped Link DetectionMagic Number每个路由器发出的包都具有一个与其他路由器不同“magic number”。如果收到了自己发出的包,这个线路就是环路。AuthenticationPAP and CHAP通常在拨号连接中使用,PAP和CHAP可以用来验证连接的两端。CompressionSTAC and Predictor软件压缩Multilink SupportMultilink PPP将包分片,在多个链路上进行负载均衡。第10页,共25页。Frame Relay ProtocolsDCEDCEFram
10、eRelayFrame RelayHeaderLayer 3PacketLMI MessagesLMI MessagesAccessLinkAccessLink第11页,共25页。Frame Relay Protocolsn封装类型n enscapsulation frame-relay ietfn如果没有参数,默认使用cisco封装类型。Cisco设备之间默认使用cisco封装类型,如果和其他厂家设备通信,需要使用ietf封装类型。第12页,共25页。Frame Relay ProtocolsnLocal Management Interface(LMI)nLMI消息提供了关于当前DLCI值
11、,虚电路状态等的信息。n主要有下面这些LMI信号格式:nANSI:Annex D defined by ANSI standard T1.617nITU-T(Q.933A):Annex A defined by Q.933AnCisco:LMI defined by the gang of four(default)(从IOS11.2起,LMI类型可以被自动检测到)第13页,共25页。Frame Relay ProtocolsnData-Link Connection IdentifersnDLCI用来区分虚电路。nSubinterfacesn在一个串行界面上可以使用多个虚电路,可以把每个虚电
12、路当成一个独立的接口,叫做子界面。第14页,共25页。Frame Relay配置 int s0 encapsulation frame-relay!int s0.16 ip address 192.168.1.22 255.255.255.252 frame-relay interface-dlci 16 int s0.17 ip address 192.168.1.201 255.255.255.252 frame-relay interface-dlci 17第15页,共25页。Frame Relay配置!int s1 encapsulation frame-relay ip addres
13、s 199.1.1.1 255.255.255.0 第16页,共25页。监测Frame Relayn show frame ip|lmi|map|pvc|route|trafficn show interface?第17页,共25页。ISDNType of interfaceNumber of Bearer Channels(B channels)Number of Signaling Channels(D channels)BRI21(16kbps)PRI(T/1)231(64kbps)PRI(E/1)301(64kbps)第18页,共25页。ISDNnISDN使用D信道进行呼叫和控制。n使
14、用B信道进行数据传输。第19页,共25页。ISDN接口类型Function GroupAcronym Stands for.DescriptionTE1Terminal Equipment 1ISDN capable.4 wire cable.Understands signaling,2B+D.Uses S reference point.TE2Terminal Equipment 1Does not understand ISDN protocols and specifications.Uses R reference point,typically an RS-232 or V.35
15、cable,to connect to a TA.TATerminal AdpaterUses R reference point and S reference point.Can be though of as the TE1 function group o behalf of TE2第20页,共25页。ISDN接口类型Function GroupAcronym Stands for.DescriptionNT1Network Termination Type 1CPE equipment in North America.Connects with U reference point(
16、2 write)to telco.Connects with T or S reference point to other customer premise equipment.NT2Network Termination Type 2NT1/NT2第21页,共25页。ISDN Function Groups and Reference PointsNT1AUNT1TANT2NT1BCDS/TUUUSS/TTR第22页,共25页。Typical ISDN ConnectionRS-232ISDNModem2 Wiretelco(U)(R)TA&NT1第23页,共25页。ISDN S-BusNT1ISDN SignalingS-bus第24页,共25页。演讲完毕,谢谢观看!第25页,共25页。