Chapter11-11.What are two reasons for using layered protocols?(请说出使用分层协议的两个理由)答:通过协议分层可以把设计问题划分成较小的易于处理的片段。分层意味着某一层的协议的改变不会影响高层或低层的协议。1—13. What is the principal difference between connectionless communication and connection—oriented communication?(在无连接通信和面对连接的通信两者之间,最主要的区别是什么?)答:主要的区别有两条。 其一:面对连接通信分为三个阶段,第一是建立连接,在此阶段,发出一个建立连接的请求.只有在连接成功建立之后,才能开始数据传输,这是第二阶段。接着,当数据传输完毕,必须释放连接。而无连接通信没有这么多阶段,它直接进行数据传输。 其二:面对连接的通信具有数据的保序性, 而无连接的通信不能保证接收数据的顺序与发送数据的顺序一致.1—20. A system has an n—layer protocol hierarchy 。 Applications generate messages of length M bytes。 At each of the layers, an h—byte header is added. What fraction of the network bandwidth is filled with headers?(一个系统有 n 层协议的层次结构。应用程序产生的消息的长度为 M 字节。在每一层上需要加上一个 h 字节的头。请问,这些头需要占用多少比例的网络带宽)答:hn/(hn+m)*100%1-28. An image is 1024 x 768 pixels with 3 bytes/pixel. Assume the image is uncompressed. How long does it take to transmit it over a 56—kbps modem channel ? Over a 1-Mbps cable modem ? Over a 10-Mbps Ethernet? Over 100—Mbps Ethernet?(一幅图像的分辨率为 1024 x 768 像素,每个像素用 3 字节来表示。假设该图像没有被压缩.请问,通过 56kbps 的调制解调器信道来传输这幅图像需要多长时间?通过 1Mbps 的电缆调制解调器呢?通过 10Mbps 的以太网呢?通过100Mbps 的以太网呢?)答:The image is 1024*768*3 bytes or 2359296 bytes。This is 18874368 bit. At 56,000 bits/sec, it takes about 337。042 sec. At 1,000,000 bits/sec, it takes about 18.874 sec. At 10,000,000 bits/sec, it takes about 1 。 887 sec. At 100 , 000,000 bits/sec, it takes abo...