首页 > 其他分享 >Week6-TCP

Week6-TCP

时间:2022-11-04 11:48:17浏览次数:47  
标签:sending layer IP What TCP data Week6

the Link Layer,IP Layer,Transport Layer

  • What part of data transfer does TCP solve, and what part does IP solve?
  1. The reliability of data transmissions, and the actual movement of the data
  • What is window size in regards packet transfer?
  1. The amount of data that can be sent before receiving an acknowledgement
  • What was the problem that Van Jacobson experienced and worked to solve?
  1. Extremely slow transmission of data when two fast internal networks were connected via a slow network.
  • The storage of unacknowledged data is whose responsibility?
  1. The transport layer of the sending computer
  • How did Van Jacobson change TCP so that it would work properly?
  1. He changed the sending computer to start sending data slowly and speed up as the data was acknowledged
  • What do we learn from the four layer TCP about about how to solve complex problems?
  1. Break things up into smaller pieces, and allow many different people and organizations to tackle each piece indvidually.
  • If you listened closely to the Bob Metcalfe video, he mentioned that Ethernet was designed after the early ARPANET had been designed and knowing how ARPANET would work allowed him to greatly simplify the design of Ethernet. Which layer is most likely the layer that let him keep Ethernet simple? (Video)
  1. TCP – Because he knew that lost packets would be re-transmitted by a higher layer
  • When we talk of the protocols that move data over the Internet, we talk of TCP/IP. Which of the following is FALSE about TCP/IP:
  1. IP makes use of TCP as its underlying transport mechanism
  • In TCP, when does a sending system know it is safe to discard packets after it has sent them?
  1. After it has received an acknowledgement from the receiving system.
  • If you wanted to register the domain dr-chuck.go.com – who would you contact?
  1. The owner of go.com

标签:sending,layer,IP,What,TCP,data,Week6
From: https://www.cnblogs.com/jqhuang2021/p/16857197.html

相关文章

  • AIRIOT物联网低代码平台如何配置Modbus TCP协议?
    AIRIOT物联网低代码平台稳定性超高,支持上百种驱动,各种主流驱动已在大型项目中通过验证,持续稳定运行。AIRIOT物联网低代码平台如何配置ModbusTCP协议?操作如下:AIRIOT......
  • 基于scapy的tcp reset阻断
    项目地址​​https://github.com/jin-long/how-does-a-tcp-reset-attack-work​​其他​​https://robertheaton.com/2020/04/27/how-does-a-tcp-reset-attack-work/​​参......
  • 【3】TCP/IP
    【转自:https://zhuanlan.zhihu.com/p/351686464】一、概述TCP/IP协议栈是一系列网络协议的总和,是构成网络通信的核心骨架,它定义了电子设备如何连入因特网,以及数据如何在......
  • TCP 首部解析与连接的建立与释放
    1.TCP首部解析源端口,目的端口:使用TCP协议传输数据时,从本机发送出去时通过的端口和目标机器用于接收的端口序号(SequenceNumber):用于标记相应的TCP报文......
  • qt错误?undefinedreferenceto`_imp___ZN10QTcpSocketD1Ev
    错误信息:undefinedreferenceto`_imp___ZN10QTcpSocketD1Ev'undefinedreferenceto`_imp___ZN10QTcpSocketC1EP7QObject'undefinedreferenceto`_imp___ZN10QTcpSo......
  • SSH远程树莓派:配置固定TCP地址SSH远程树莓派 4/4
    上一篇​SSH远程树莓派:Mac/linux系统ssh远程树莓派3/4​在之前的文章里,我们向大家介绍了如何通过cpolar,使用SSH在远程访问本地的树莓派,这不仅能够让我们能方便的在公众互联......
  • 1. osi七层与TCP\IP协议
    1.为什么要分层,2.七层模型加模型3.TCP/IP参考模型4.TCP/IP协议族的组织5.5g技术规范补充  6 数据的封装过程  (加红为背诵内容,重要)  一.1  层次......
  • tcp和udp
    一、概念TCP(TransmissionControlProtocol,传输控制协议)与UDP(UserDataProtocol,用户数据协议)是互联网传输数据较为常用的协议,我们熟知的HTTP就是基于TCP的。二、......
  • (十一)深入浅出TCPIP之TCP粘包问题
    粘包和拆包问题     粘包拆包问题是处于网络比较底层的问题,在数据链路层、网络层以及传输层都有可能发生。我们日常的网络应用开发大都在传输层进行,由于UDP有消息......
  • TCP_IP协议
    TCP/IP协议栈详解一,TCP/IP协议栈概述1,TCP/IP协议层次结构 应用层 传输层 互联网层 网络接口层2,TCP/IP协议栈与OSI/RM模型的区别 相同点: 两者都是以协议栈的......