计网-第五章作业
计网_第四章作业

计⽹_第四章作业Chapter 44.1,4.2,4.3节后作业1.(R3)What are the two most important network-layer functions in a datagram network? Whatare the three most important network-layer functions in a virtual-circuit network?答:forwarding and routing.forwarding, routing and connection setup.2.(R2)What is the difference between routing and forwarding?答:Forwarding is about moving a packet from a router’s input link to the appropriate output link.Routing is about determining the end-to-routes between sources and destinations.3.(R9)Describe how packet loss can occur at input ports. Describe how packet lossat input portscan be eliminated (without using infinite buffers).答:The queue size at the input port grows large because of slow switching fabric speed and exhausting router’s buffer space. It can be eliminated if the switching fabric speed is at least n times as fast as the input line speed, where n is the number of input ports.4.4,4.5,4.6,4.7节后作业4.(R12)What is the 32-bit binary equivalent of the IP address 223.1.3.27?答:11011111 00000001 00000011 000110115.Do routers have IP addresses? If so, how many?答:Yes. They have one address for each interface.6.Consider Figure 4.34. Starting with the original table in D, suppose that Dreceives from A thefollowing advertisement.Will the table in D change? If so how?答:No. If the advertisement said that A were only 4 hops away from z by way of C, then D would indeed change its forwarding table.7.(P8)Consider a datagram network using 32-bit host addresses. Suppose a routerhas five links,numbered 0 through 4, and packets are to be forwarded to thelink interfaces as follows: DestinationAddressRangeLink Interface11100000 00000000 00000000 00000000Through 011100000 00000000 11111111 1111111111100000 00000001 00000000 00000000Through 111100000 00000001 11111111 1111111111100000 00000010 00000000 00000000Through 211100000 11111111 11111111 1111111111100001 00000000 00000000 00000000Through 311100001 11111111 11111111 11111111Otherwise 4a. Provide a forwarding table that has five entries, uses longest prefix matching, and forwardspackets to the correct link interfaces.b. Describe how your forwarding table determines the appropriate link interface for datagramswith destination addresses:11001000 10010001 01010001 0101010111100000 10101101 11000011 0011110011100001 1000000000010001 01110111答:Prefix match for second address is 2nd entry: link interface 1Prefix match for first address is 3rd entry: link interface 28.(P9)Consider a datagram network using 4 bit host addresses. Suppose a routeruses longestnumber of addresses in the range.答:9.(P11)Consider a router that interconnects three subnets: Subnet 1, Subnet 2, andSubnet 3.Suppose all ofthe interfaces in each ofthese three subnets arerequired to have the prefix 220.2.240/20. Also suppose that Subnet 1 isrequired to support up to 2000 interfaces, and Subnets 2 and3 are eachrequired to support up to 1000 interfaces. Provide three network addresses (ofthe form a.b.c.d/x) that satisfy these constraints.答:223.1.17.0/25223.1.17.128/26223.1.17.192/2610. (P14)Consider a subnet with prefix 101.101.101.64/26. Give an example of oneIP address (ofform xxx.xxx.xxx.xxx) that can be assigned to this network.Suppose an ISP owns the block of addresses of the form101.101.128/17.Suppose it wants to create four subnets from this block, with each blockhaving the same number of IP addresses. What are the prefixes (of forma.b.c.d/x) for the four subnets? 答:The IP address in range is from 101.101.101.64 to 101.101.101.128 The four equal size subnets (extends 18 and 19) 101.101.128/19 101.101.160/19 101.101.192/19 101.101.224/1911. (P15)Consider the topology shown in Figure 4.17. Denote the three subnets withhosts(starting clockwise at l2:00)) as Networks A, B, and C. Denote the subnets without hosts as Networks D, E, and F.a. Assign network addresses to each of these six subnets, with the followingconstraints: All addresses must beallocated from214.97.254/23;Subnet A should have enough addresses to support 250 interfaces; Subnet B should haveenough addresses to support 120 interfaces; andSubnet C should have enough addresses to support 120 interfaces. Ofcourse, subnets D, E and F should each be able to support two interfaces.For each subnet, the assignment should take the form a.b.c.d/x ora.b.c.d/x - e.f.g.h/y. b. Using your answer to part (a), provide the forwarding tables (using longestprefix matching)for each of the three routers. 答:a. From 214.97.254/23, the assignments areSubnet A: 214.97.255/24(28=256 addresses)Subnet B: 214.97.254.0/25-214.97.254.0/29(27-8=120 addresses) Subnet C: 214.97.254.128/25(27=128 addresses) Subnet D: 214.97.254.0/31(21=2 addresses) Subnet E: 214.97.254.2/31(21=2 addresses)A B C D E FSubnet F: 214.97.254.4/30(22=4 addresses)b.Assume that no datagrams have router interface as ultimate destinations. Also, label D,E,F12.(P16)Consider sending a 4,000-byte datagram into a link that has an MTU of400 bytes.Suppose the original datagram is stamped with the identificationnumber 422-How many fragments are generated? What are their characteristics?答:The maximum size of data field in each fragment = 380(20 bytes IP header). Thus the number of required fragments = (4000-20)÷380=11Each fragment will have identification number 422. Each fragment except the last one will be of size 500 bytes(including IP header). The last datagram will be of size 120 bytes (including IP header). The offsets of 7fragments will be0,60,120,180,240,300,360. Each of the first 6 fragments will have flag = 1; the last fragment will have flag = 0 .13.(P25)Consider the network fragment shown below. -r has only two attached neighbors, w andy.w has a minimum-cost path to destination u (not shown) of 5,and y has a minimum-cost path to u of 6. The complete paths from w and y toz (and between w and y) are not shown. All link costs in the network havestrictly positive integer values.5u6a. Give x's distance vector for destinations w, y, and u.b. Give a link-cost change for either c(x,w) or c(x,y) such that -r will informits neighbors of anew minimum-cost path to u as a result of executing thedistance-vector algorithm.c. Give a link-cost change for either c(x,w) or c(x,y) such that x will not inform its neighbors of a new minimum-cost path to u as a result of executing the distance-vector algorithm.答:a.Dx(y)=5,Dx(w)=2,Dx(u)=7b.If c(x, y) becomes longer or shorter, the least cost path from x to u will still have cost at least 7. If c(x, w) changes, x will inform its neighbors of new cost.c.No way.。
谢希仁计算机网络第五版课后习题答案(1~6章)

谢希仁计算机网络第五版课后习题答案(1~6章)计算机网络课后习题答案第一章概述 (1)第二章物理层 (7)第三章数据链路层 (11)第四章网络层 (18)第五章传输层 (32)第六章应用层 (40)第一章概述1-01 计算机网络向用户可以提供那些服务?答:连通性和共享1-02 简述分组交换的要点。
答:(1)报文分组,加首部(2)经路由器储存转发(3)在目的地合并1-03 试从多个方面比较电路交换、报文交换和分组交换的主要优缺点。
答:(1)电路交换:端对端通信质量因约定了通信资源获得可靠保障,对连续传送大量数据效率高。
(2)报文交换:无须预约传输带宽,动态逐段利用传输带宽对突发式数据通信效率高,通信迅速。
(3)分组交换:具有报文交换之高效、迅速的要点,且各分组小,路由灵活,网络生存性能好。
1-04 为什么说因特网是自印刷术以来人类通信方面最大的变革?答:融合其他通信网络,在信息化过程中起核心作用,提供最好的连通性和信息共享,第一次提供了各种媒体形式的实时交互能力。
1-05 因特网的发展大致分为哪几个阶段?请指出这几个阶段的主要特点。
答:从单个网络APPANET向互联网发展; TCP/IP协议的初步成型建成三级结构的Internet;分为主干网、地区网和校园网;形成多层次ISP结构的Internet; ISP首次出现。
1-06 简述因特网标准制定的几个阶段?答:(1)因特网草案(Internet Draft) ——在这个阶段还不是 RFC 文档。
(2)建议标准(Proposed Standard) ——从这个阶段开始就成为 RFC 文档。
(3)草案标准(Draft Standard)(4)因特网标准(Internet Standard)1-07小写和大写开头的英文名字 internet 和Internet在意思上有何重要区别?答:(1)internet(互联网或互连网):通用名词,它泛指由多个计算机网络互连而成的网络。
计算机网络(谢希仁第五版)-第五章_习题答案

第五章传输层5—01 试说明运输层在协议栈中的地位和作用,运输层的通信和网络层的通信有什么重要区别为什么运输层是必不可少的答:运输层处于面向通信部分的最高层,同时也是用户功能中的最低层,向它上面的应用层提供服务运输层为应用进程之间提供端到端的逻辑通信,但网络层是为主机之间提供逻辑通信(面向主机,承担路由功能,即主机寻址及有效的分组交换)。
各种应用进程之间通信需要“可靠或尽力而为”的两类服务质量,必须由运输层以复用和分用的形式加载到网络层。
5—02 网络层提供数据报或虚电路服务对上面的运输层有何影响答:网络层提供数据报或虚电路服务不影响上面的运输层的运行机制。
但提供不同的服务质量。
5—03 当应用程序使用面向连接的TCP和无连接的IP时,这种传输是面向连接的还是面向无连接的答:都是。
这要在不同层次来看,在运输层是面向连接的,在网络层则是无连接的。
<5—05 试举例说明有些应用程序愿意采用不可靠的UDP,而不用采用可靠的TCP。
答:VOIP:由于语音信息具有一定的冗余度,人耳对VOIP数据报损失由一定的承受度,但对传输时延的变化较敏感。
有差错的UDP数据报在接收端被直接抛弃,TCP数据报出错则会引起重传,可能带来较大的时延扰动。
因此VOIP宁可采用不可靠的UDP,而不愿意采用可靠的TCP。
5—06 接收方收到有差错的UDP用户数据报时应如何处理答:丢弃5—07 如果应用程序愿意使用UDP来完成可靠的传输,这可能吗请说明理由答:可能,但应用程序中必须额外提供与TCP相同的功能。
5—08 为什么说UDP是面向报文的,而TCP是面向字节流的答:发送方UDP 对应用程序交下来的报文,在添加首部后就向下交付IP 层。
UDP 对应用层交下来的报文,既不合并,也不拆分,而是保留这些报文的边界。
接收方UDP 对IP 层交上来的UDP 用户数据报,在去除首部后就原封不动地交付上层的应用进程,一次交付一个完整的报文。
大地测量学基础:第五章 大地测量技术-1-2-3

(1)不同比例尺地图对大地点的数量要求 :
测图比例尺
1:5万 1:2.5万 1:1万
平均每幅图面积(km2) 350~500 100~125 15~20
国家平面大地控制网
惯性测量系统(INS)
惯性测量是利用惯性力学基本原理,在相距较远的两点之间, 对装有惯性测量系统的运动载体(汽车或直升飞机)从一个已知点 到另一个待定点的加速度,分别沿三个正交的坐标轴方向进行 两次积分,从而求定其运动载体在三个坐标轴方向的坐标增量 ,进而求出待定点的位置,它属于相对定位,其相对精度为 (1~2)·10-5,测定的平面位置中误差为±25cm左右。 优点:完全自主式,点间也不要求通视;全天候,只取决于汽 车能否开动、飞机能否飞行。 缺点:相对测量,精度不高。
平均每幅图的三角点个数
3
2~3
1
每点控制的面积(km2)
150
50
20
三角网的平均边长(km)
13
8
2~6
相应的三角网等级
二等
三等
四等
国家平面大地控制网布设原则
(2)GPS测量中两相邻点间的距离要求(单位:km):
等级 相邻点最小距离
A
100
B
15
C
5
D
2
E
1
相邻点最大距离 2000 250 40 15 10
测图比例尺
1∶5万 1∶2.5万 1∶1万 1∶5千 1∶2千
图根点对于三角点 的点位误差(m) ±5.0 ±2.5 ±1.0 ±0.5 ±0.2
计算机网络课后习题答案谢希仁第五版

<<计算机网络>> 谢希仁编著---习题解答第一章概述习题1-02 试简述分组交换的要点。
答:采用存储转发的分组交换技术,实质上是在计算机网络的通信过程中动态分配传输线路或信道带宽的一种策略。
它的工作机理是:首先将待发的数据报文划分成若干个大小有限的短数据块,在每个数据块前面加上一些控制信息(即首部),包括诸如数据收发的目的地址、源地址,数据块的序号等,形成一个个分组,然后各分组在交换网内采用“存储转发”机制将数据从源端发送到目的端。
由于节点交换机暂时存储的是一个个短的分组,而不是整个的长报文,且每一分组都暂存在交换机的内存中并可进行相应的处理,这就使得分组的转发速度非常快。
分组交换网是由若干节点交换机和连接这些交换机的链路组成,每一结点就是一个小型计算机。
基于分组交换的数据通信是实现计算机与计算机之间或计算机与人之间的通信,其通信过程需要定义严格的协议;分组交换网的主要优点:1、高效。
在分组传输的过程中动态分配传输带宽。
2、灵活。
每个结点均有智能,可根据情况决定路由和对数据做必要的处理。
3、迅速。
以分组作为传送单位,在每个结点存储转发,网络使用高速链路。
4、可靠。
完善的网络协议;分布式多路由的通信子网。
#电路交换相比,分组交换的不足之处是:①每一分组在经过每一交换节点时都会产生一定的传输延时,考虑到节点处理分组的能力和分组排队等候处理的时间,以及每一分组经过的路由可能不等同,使得每一分组的传输延时长短不一。
因此,它不适用于一些实时、连续的应用场合,如电话话音、视频图像等数据的传输;②由于每一分组都额外附加一个头信息,从而降低了携带用户数据的通信容量;③分组交换网中的每一节点需要更多地参与对信息转换的处理,如在发送端需要将长报文划分为若干段分组,在接收端必须按序将每个分组组装起来,恢复出原报文数据等,从而降低了数据传输的效率。
习题1-03 试从多个方面比较电路交换、报文交换和分组交换的主要优缺点。
高速铁路运输组织基础-第五章 高速铁路施工维修组织

高速铁路施工维修组织
第一节 高速铁路施工维修作业组织
一、概 述
高速铁路施工是指影响高速铁路设备稳定、使用和行车安全的各种 施工作业,按组织方式、影响程度分为施工和维修两类。三个基本环节 是:管理、检测和维修(俗称管、检、修)。
二、国外高速铁路维修管理概况
第一节 高速铁路施工维修作业组织
(一)日本新干线 1.管理方式 日本新干线采取典型的管检合一、管修分离的线路施工维修管理体制。 2.维修类别 日本新干线的维修分为大规模施工和小规模施工两大类。 3.施工作业 新干线线路施工作业全部由施工公司承担,作业在夜间列车停运期间进 行。 4.作业时间 新干线全部推行机械化“天窗”维修,每天0:00—6:00 列车停运,为 各项施工作业的“天窗”时间。
高速铁路的施工计划审批统一按照我国《铁路营业线施工安全管理 办法》办理,实行铁路总公司、铁路局、车务段(直属站)分级管理、 逐级审批的制度。
第一节 高速铁路施工维修作业组织
(三)施工维修计划的编制 1.月度施工计划 月度施工计划是确定施工封锁时间和安排施工、维修作业的依据。 2.施工日计划 日计划是由施工单位或设备管理单位根据月度施工计划批准的施工
项目,提报的当日施工作业安排,是调度员进行行车组织调整、发布施 工命令的依据。
3.维修计划 高速铁路维修计划实行日计划。 4.延伸段的施工计划与维修计划
第二节 高速铁路维修作业内容
一、工务维修
1. 工务维修的作业内容 (1)Ⅰ级维修项目: (2)Ⅱ级维修项目: 2. 工务维修机械与检测设备 目前,在线路维修作业中已大都采用多头捣固机。
第二节 高速铁路维修作业内容
二、电务维修
电务维修主要是对信号设备的维护和检修 1.信号维修 (1)信号Ⅰ级维修项目。 (2)信号Ⅱ级维修项目。 2.通信维修 (1)通信Ⅰ级维修项目 (2)通信Ⅱ级维修项目
第五章 计划 习题一

第五章计划习题一一、单项选择题1、一个组织最综合、最长远的目标是。
()A、战略B、宗旨C 、规划D、政策2、目标管理中,主管对人性的假设是基于()A、X理论B、Y理论C、复杂人D、经济人3、目标管理中,目标的制定是通过()A、自上而下B、自下而上C、双向沟通D、单向沟通4、传统的目标设定方法是通过()A、自上而下B、自下而上C、双向沟通D、单向沟通5、用于编制和调整长期计划的一种十分有效的方法是()A、滚动计划法B、网络计划法C、运筹学法D、投入产出法6、具有很强的可操作性,又有助于控制和动态优化的计划方法是()A、滚动计划法B、网络计划法C、运筹学法D、投入产出法7、目标管理是由美国管理学家()首先提出的。
A、戴明B、孔茨C、彼得·德鲁克D、西蒙8、计划按所涉及的组织活动层次可分为()A、战略、战术和作业计划B、综合、专业和项目计划C、指导性计划和具体性计划D、战略、程序、规则、规划等9、计划按明确性可划分为()A、战略、战术和作业计划B、综合、专业和项目计划C、指导性计划和具体性计划D、战略、程序、规则、规划等10、计划按所涉及的组织活动内容可分为()A、战略、战术和作业计划B、综合、专业和项目计划C、指导性计划和具体性计划D、战略、程序、规则、规划等11、计划按表现形式分为()A、战略、战术和作业计划B、综合、专业和项目计划C、指导性计划和具体性计划D、战略、程序、规则、规划等12、目标按层次可分为()A、社会、经济和发展目标B、营销、生产、财务和研发目标C、战略、战术和具体作业目标D、长期、中期和短期目标13、目标按内容可分为()A、社会、经济和发展目标B、营销、生产、财务和研发目标C、战略、战术和具体作业目标D、长期、中期和短期目标14、目标按性质分为()A、社会、经济和发展目标B、营销、生产、财务和研发目标C、战略、战术和具体作业目标D、长期、中期和短期目标15、当组织处于生命周期的形成阶段时,较易采用的计划类型是()A、具体性计划B、指导性计划C、长期计划D、短期计划16、在管理中,居于主导地位的工作是()A、计划B、组织C、人员配备D、指挥二、多项选择题1、计划职能的任务是()A、确定目标B、制定全局战略C、提出计划方案D、协调各项活动2、计划应具有的特性是()A、严肃性B、灵活性C、不可更改性D、消除变化性3、对目标的要求应该是()A、先进性B、可实现性C、单一性D、明确性4、对计划的基本要求是()A、可行性B、预见性C、指导性D、目的性5、下列权变因素中,能够对计划类型产生影响的是()A、管理者所处的组织层次B、管理者个性C、组织生命周期D、组织环境的不确定性6、当环境不确定性越大时,较易采取的计划类型是()A、具体的 B 、指导性的C、长期的D、短期的7、当组织处于生命周期的成长阶段时,较易采取的计划类型是()A、具体的 B 、指导性的C、长期的D、短期的8、当组织处于生命周期的成熟阶段时,较易采取的计划类型是()A、具体的 B 、指导性的C、长期的D、短期的9、当组织处于生命周期的衰退阶段时,较易采取的计划类型是()A、具体的 B 、指导性的C、长期的D、短期的10、一个组织的目标可以是()A、利润B、市场份额C、社会责任D、雇员福利11、目标管理的缺点是()A、目标管理理论尚未普及和宣传B、适当的目标不易确定C、目标是长期的D、不灵活三、判断题1、没有一种单一的目标能够有效地评价一个组织是否成功地履行了它的使命。
计网_第五章作业复习过程

计网_第五章作业Chapter 5作业题,请同学们注意题目描述。
1.(R1)What are some of the possible services that a link-layer protocol can offer tothe network layer? Which of these link-layer services have corresponding services in IP? In TCP?答:可能提供的服务:链路接入,成帧,可靠传输,流量控制,差错检测,差错纠正,半双工和全双工;In IP:成帧,差错检测;In TCP: 成帧,可靠传输,差错检测,半双工和全双工。
2.(R2)If all the links in the Internet were to provide reliable delivery service, wouldthe TCP reliable delivery service be redundant? Why or why not?答:不会多余,因为TCP保证的是传输层的数据传送,而link提供稳定可靠传输保证链路层的传输稳定,二者不完全重叠,所以TCP可靠传输也不会多余。
例如,链路层协议不能保证端到端的顺序,就需要TCP协议进行排序;路由器缓存溢出丢包,链路层协议无法解决这个问题,但是TCP可以。
3.(R8)How big is the MAC address space? The IPv4 address space? The IPv6address space?答:248个MAC addresses; 232个IPv4 addresses; 2128个IPv6 addresses4.(R9)Why is an ARP query sent within a broadcast frame? Why is an ARPresponse sent within a frame with a specific destination MAC address?答:因为新加入网络的主机是不知道路由器的IP的,自己也没有IP,所以只能广播才能得到IP,特定的主机就会特定响应。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Chapter 5作业题,请同学们注意题目描述。
1.(R1)What are some of the possible services that a link-layer protocol can offerto the network layer? Which of these link-layer services have corresponding services in IP? In TCP?答:可能提供的服务:链路接入,成帧,可靠传输,流量控制,差错检测,差错纠正,半双工和全双工;In IP:成帧,差错检测;In TCP: 成帧,可靠传输,差错检测,半双工和全双工。
2.(R2)If all the links in the Internet were to provide reliable delivery service,would the TCP reliable delivery service be redundant? Why or why not?答:不会多余,因为TCP保证的是传输层的数据传送,而link提供稳定可靠传输保证链路层的传输稳定,二者不完全重叠,所以TCP可靠传输也不会多余。
例如,链路层协议不能保证端到端的顺序,就需要TCP协议进行排序;路由器缓存溢出丢包,链路层协议无法解决这个问题,但是TCP可以。
3.(R8)How big is the MAC address space? The IPv4 address space? The IPv6 addressspace?答:248个MAC addresses; 232个IPv4 addresses; 2128个IPv6 addresses4.(R9)Why is an ARP query sent within a broadcast frame? Why is an ARP responsesent within a frame with a specific destination MAC address?答:因为新加入网络的主机是不知道路由器的IP的,自己也没有IP,所以只能广播才能得到IP,特定的主机就会特定响应。
因为每个主机的MAC地址都是唯一的,而ARP建立转发表的时候会带上MAC地址。
5.(P5)Consider the 4-bit generator, G, shown in Figure 5.8, and suppose that Dhas the value 11111010. What is the value of R? G=1001答:的余数,∴ R=1106.(P11)Consider a broadcast channel with N nodes and a transmission rate of R bps.Suppose the broadcast channel uses polling (with an additional polling node) for multiple access. Suppose the amount of time from when a node completes transmission until the subsequent node is permitted to transmit (that is, the polling delay) is d poll. Suppose that within a polling round, a given node is allowed to transmit at most Q bits. What is the maximum throughput of the broadcast channel?答:情况1:情况2:两种极端情况进行比较,明显情况2为最大值;情况1为最小值。
7.(P12)Consider three LANs interconnected by two routers, as shown in Figure 5.38.a. Redraw the diagram to include adapters.Figure 5.38 Three subnets, interconnected by routersb. Assign IP addresses to all of the interfaces. For Subnet I use addresses ofthe form 111.111.111.xxx; for Subnet 2 uses addresses of the form122.222.222.xxx;and for Subnet 3 use addresses of the form 133.333.333.xxx. (注:本题目略有修改,见红色标注)c. Assign MAC addresses to all of the adapters.d. Consider sending an IP datagram from Host A to Host F. Suppose all of the ARPtables are up to date. Enumerate all the steps, as done for the single-router example in Section 5.4.2.e. Repeat (d), now assuming that the ARP table in the sending host is empty(andthe other tables are up to date).答:a.b.c.d. 1. 由A 的转发表决定了数据报应该被转发到路由器端口111.111.111.002.2. 由A 的适配器生成一个携带以太网目的地址22-22-22-22-22-22的以太网分组.3. 第一个路由器即收到该分组并且解析了数据报。
该路由器中的转发表提示该数据报应该被转发到122.222.222.003.4. 第一个路由器发送带有目的地址为55-55-55-55-55-55并且源地址为33-33-33-33-33-33的以太网分组,经过IP 地址为122.222.222.002的端口。
5. 过程以此类推,直到分组到达主机F .e. 主机A 的ARP 模块一定知道本网段网关的IP 地址为 111.111.111.002。
主机A 发送一个ARP 请求(包含在一个以太网广播帧中)。
第一个路由器接收到这个请求分组并且发送给主机A 一个ARP 响应分组。
这个ARP 响应分组装载于一个包含以太网目的地址00-00-00-00-00-00的以太网帧上。
得知了路由器端口的MAC 地址后,以他作为目的地址成帧,以后的步骤与上一问相同。
8. (P15)Suppose nodes A and B are on the same 10 Mbps Ethernet bus, and thepropagation delay between the two nodes is 225 bit times. Suppose A and B send frames at the same time, the frames collide, and then A and B choose different values of K in the CSMA/CD algorithm. Assuming no other nodes are active, can the retransmissions from A and B collide? For our purposes, it suffices to work out the following example. Suppose A and B begin transmission at t = 0 bit times. They both detect collisions at t = 225 bit times. They finish transmitting a jam signal at t = 225 + 48 = 273 bit times. Suppose 0=A K and 1=B K , At what time does B schedule its retransmission? At what time does A begin transmission? (Note: The nodes must wait for an idle channel after returning to Step 2-see protocol.) At what time does A's signal reach B? Does B refrain from transmitting at its scheduled time?答:9. (P16)Suppose nodes A and B are on the same 10 Mbps Ethernet bus, and thepropagation delay between the two nodes is 225 bit times. Suppose node A begins transmitting a frame and, before it finishes, node B begins transmitting a frame. Can A finish transmitting before it detects that B has transmitted? Why or why not? If the answer is yes, then A incorrectly believes that its frame was successfully transmitted without a collision. Hint: Suppose at time t = 0 bit times, A begins transmitting a frame. In the worst case, A transmits a minimum-sized frame of 512 + 64 bit times. So A would finish transmitting the frame at t = 512 + 64 bit times. Thus, the answer is no, if B's signal reachesA before bit time t = 512 + 64 bits. In the worst case, when does B's signal reach A?答:假设在 t = 0 时刻 A 开始传输。