




版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、數(shù)據(jù)通信基礎(chǔ)第2章 (因特網(wǎng)模型)第二章內(nèi)容提要Chapter 2 因特網(wǎng)模型The Internet Model2.1 分層任務(wù)2.2 因特網(wǎng)模型2.3 OSI參考模型20120229Page 2 BitLiuJK20120229BitLiuJKPage 3 數(shù)據(jù)通信為什么需要參考模型?計(jì)算機(jī)、網(wǎng)絡(luò)和因特網(wǎng)都是軟件和硬件組合在一起的復(fù)雜系統(tǒng)。參考模型可以看作是某種“標(biāo)準(zhǔn)參照”,可用來(lái)比較上述系統(tǒng)的不同實(shí)現(xiàn)方式。本課程和所用教材使用的是因特網(wǎng)五層模型,即物理層、數(shù)據(jù)鏈路層、網(wǎng)絡(luò)層、傳輸層和應(yīng)用層。這個(gè)模型與傳統(tǒng)的OSI參考模型(七層)和TCP/IP模型(四層)是不同的。這是本教材的特色所在,也
2、逐漸被大家接受。OSI參考模型僅應(yīng)用在特定場(chǎng)合。20120229BitLiuJKPage 4 2.1 分層任務(wù)Sender, Receiver, and CarrierHierarchyServices20120229BitLiuJKPage 5 Layered TasksTasks can often be treated as “Layered”.Data communication between two devices can be separated into independent “l(fā)ayers”Each layer has interfaces connecting upper
3、 and lower layers.Each layer defines a family of functions distinct from other layers “sub-task” in seriesBenefit: Each layer can be implemented by different manufacturer.Lets see an example of “Layered task”.20120229BitLiuJKPage 6 Figure 2.1 Sending a letter20120229BitLiuJKPage 7 ServicesEach layer
4、 uses the services of the layer immediately below it.In another word, the upper layer does not communication directly with other upper layer. It sends information to the lower layer to transmit. This is called “Virtual Communication”.20120229BitLiuJKPage 8 2.2 Internet ModelPeer-to-Peer Processes對(duì)等過(guò)
5、程Functions of Layers分層的功能Summary of Layers分層的小結(jié)20120229BitLiuJKPage 9 Figure 2.2 Internet layersThere are FIVE layers in the Internet Model.20120229BitLiuJKPage 10 Peer-to-Peer ProcessPeer-to-Peer Process對(duì)等過(guò)程 is referred to the processes on two or more machines that communicate at a given (same) lay
6、er.It may pass through many intermediate nodes.Information can be passed by Interface between each pair of adjacent layers.20120229BitLiuJKPage 11 Figure 2.3 Peer-to-peer processesNOTE20120229BitLiuJKPage 12 Figure 2.4 An exchange using the Internet modelEncapsulationDecapsulation20120229BitLiuJKPag
7、e 13 Figure 2.5 Physical layer20120229BitLiuJKPage 14 The physical layer is responsible for transmitting individual bits from one node to the next.Note:Major duties of physical layer include:1. Physical characteristics of media2. Representation of bits3. Data Rate4. Synchronization of bits20120229Bi
8、tLiuJKPage 15 Figure 2.6 Data link layer20120229BitLiuJKPage 16 The data link layer is responsible for transmitting frames from one node to the next.Note:Major duties of data link layer include:Framing, Physical addressing, flow control, error control, access control20120229BitLiuJKPage 17 Figure 2.
9、7 Node-to-node (hop-to-hop) delivery20120229BitLiuJKPage 18 Example 1In Figure 2.8 a node with physical address 10 sends a frame to a node with physical address 87. The two nodes are connected by a link. At the data link level this frame contains physical addresses in the header. These are the only
10、addresses needed. The rest of the header contains other information needed at this level. The trailer usually contains extra bits needed for error detection.20120229BitLiuJKPage 19 Figure 2.8 Example 120120229BitLiuJKPage 20 Figure 2.9 Network layer20120229BitLiuJKPage 21 The network layer is respon
11、sible for the delivery of packets from the original source to the final destination.Note:Major duties of network layer include:Logical addressing, Routing20120229BitLiuJKPage 22 Figure 2.10 Source-to-destination delivery20120229BitLiuJKPage 23 Example 2In Figure 2.11 we want to send data from a node
12、 with network address A and physical address 10, located on one LAN, to a node with a network address P and physical address 95, located on another LAN. Because the two devices are located on different networks, we cannot use physical addresses only; the physical addresses only have local jurisdicti
13、on. What we need here are universal addresses that can pass through the LAN boundaries. The network (logical) addresses have this characteristic. 20120229BitLiuJKPage 24 Figure 2.11 Example 220120229BitLiuJKPage 25 Figure 2.12 Transport layer20120229BitLiuJKPage 26 The transport layer is responsible
14、 for delivery of a message from one process to another.Note:Major duties of transport layer include:Port addressing, Segmentation and reassembly, connection control, flow control, error control20120229BitLiuJKPage 27 Figure 2.12 Reliable process-to-process delivery of a message20120229BitLiuJKPage 2
15、8 Example 3Figure 2.14 shows an example of transport layer communication. Data coming from the upper layers have port addresses j and k (j is the address of the sending process, and k is the address of the receiving process). Since the data size is larger than the network layer can handle, the data
16、are split into two packets, each packet retaining the port addresses (j and k). Then in the network layer, network addresses (A and P) are added to each packet.Segmentation & Reassembling20120229BitLiuJKPage 29 Figure 2.14 Example 320120229BitLiuJKPage 30 Figure 2.15 Application layer20120229BitLiuJ
17、KPage 31 The application layer is responsible for providing services to the user.Note:Major duties of application layer include:Mail services, file transfer, remote log-in, World Wide Web (WWW)20120229BitLiuJKPage 32 Figure 2.16 Summary of duties20120229BitLiuJKPage 33 2.3 OSI 參考模型兩種模型的比較20120229Bit
18、LiuJKPage 34 Figure 2.17 OSI參考模型20120229BitLiuJKPage 35 The OSI ModelOSI = Open System InterconnectionOSI RM = OSI Reference ModelOSI is a standard from the ISO (International Standard Organization) .OSI is not equal to ISO.Open System is a model that allows different systems to communicate with eac
19、h other.OSI is only a model, not a protocol.20120229BitLiuJKPage 36 Layered ArchitectureData communication between two devices can be separated into independent “l(fā)ayers”Each layer has interfaces connecting upper and lower layers.Each layer defines a family of functions distinct from other layersEach
20、 layer can be implemented by different manufacturer, hence Open System.20120229BitLiuJKPage 37 Useful AnalogyTwo philosophers wish to exchange philosophies1st philosopher speaks Spanish and English2nd philosopher speaks Chinese and FrenchEach engages a translator, who agree on a neutral language kno
21、wn to bothe.g. DutchSecretaries FAX w/o interpretingL2 protocol is Dutch, but (w.r.t. L1 and L3) might just as well have been Japanese! 20120229BitLiuJKPage 38 Seven Layers of OSIPhysicalData linkNetworkTransportSessionPresentationApplicationPleaseDoNotTouchStevesPetAlligator20120229BitLiuJKPage 39
22、Communication through OSI ModelSee the figure in next slideTwo devices connected by many Intermediate NodesEnd device uses all the 7 layers, while the intermediate node uses only part of them. Example: Router uses only the lower three layers, i.e., physical, data link and network layers.20120229BitL
23、iuJKPage 40 Figure 3-2OSI Layers20120229BitLiuJKPage 41 Virtual CommunicationAny two layers can communicate with each other in a “virtual” way.For transmission, the lower layer add “Header” to the data (Protocol Data Unit), this is called Packing or Encapsulation.At the receiver, PDU is extracted from the PDU, Header is removed, and the data is sent to upper layer, this is called Unpacking or Decapsulation.20120229BitLiuJKPage 42 Figure 3-3An Exchange Using the
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 四川雅安中學(xué)2025屆高三下學(xué)期期末學(xué)習(xí)能力診斷數(shù)學(xué)試題含解析
- 內(nèi)蒙巴彥淖爾市2025年高三畢業(yè)班3月教學(xué)質(zhì)量檢查語(yǔ)文試題含解析
- 山東省日照市五蓮二中學(xué)2025屆初三化學(xué)試題下學(xué)期期末考試試題含解析
- 武夷山職業(yè)學(xué)院《建筑與裝飾工程計(jì)量與計(jì)價(jià)課程設(shè)計(jì)》2023-2024學(xué)年第二學(xué)期期末試卷
- 山東省濟(jì)南市歷城區(qū)2025屆初三4月模擬(二模)考試生物試題理試題含解析
- 遼寧中醫(yī)藥大學(xué)《藥學(xué)綜合實(shí)驗(yàn)》2023-2024學(xué)年第二學(xué)期期末試卷
- 六盤(pán)水幼兒師范高等專科學(xué)校《日語(yǔ)文學(xué)》2023-2024學(xué)年第二學(xué)期期末試卷
- 山西林業(yè)職業(yè)技術(shù)學(xué)院《遙感原理與方法》2023-2024學(xué)年第一學(xué)期期末試卷
- 二零二五房屋及土地租賃協(xié)議
- 智能駕駛之路
- 內(nèi)墻涂料施工方案
- 2025年春季部編版五年級(jí)語(yǔ)文文化素養(yǎng)提升計(jì)劃
- (T8聯(lián)考)2025屆高三部分重點(diǎn)中學(xué)3月聯(lián)合測(cè)評(píng)語(yǔ)文試卷(含答案詳解)
- 2024年山東司法警官職業(yè)學(xué)院招聘筆試真題
- 鋁合金門(mén)窗安裝工程施工方案
- 2024年高級(jí)經(jīng)濟(jì)師《工商管理》考試真題
- 第14課 遼宋夏金元時(shí)期的科技與文化 教案2024-2025學(xué)年七年級(jí)歷史下冊(cè)新課標(biāo)
- T-CRHA 089-2024 成人床旁心電監(jiān)測(cè)護(hù)理規(guī)程
- 監(jiān)理實(shí)施細(xì)則模板(信息化、軟件工程)
- 精神疾病治療新靶點(diǎn)-深度研究
- 教學(xué)課件-統(tǒng)計(jì)學(xué)(第三版)袁衛(wèi)
評(píng)論
0/150
提交評(píng)論