Understanding the TCP/IP Transport Layer
Transport Layer
Reliable vs. Best-Effort Comparison
The purpose of the transport layer is to hide the network requirements from the application layer.
Connection-oriented transport provides reliable transport; connectionless transport provides best-effort transport.
Network General Training - 05 Understanding the TCP/IP Trans
版主: xyevolve
版面规则
1. 本版是定位于惠普网络产品的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
1. 本版是定位于惠普网络产品的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
-
- 网站编辑
- 帖子: 767
- 注册时间: 2010年 12月 22日 04:06 星期三
Network General Training - 05 Understanding the TCP/IP Trans
您没有权限查看这个主题的附件。
上次由 admin 在 2015年 1月 29日 16:21 星期四,总共编辑 2 次。
-
- 网站编辑
- 帖子: 767
- 注册时间: 2010年 12月 22日 04:06 星期三
Re: Network General Training - 05 Understanding the TCP/IP T
UDP is a protocol that operates at the transport layer and provides applications with access to the network layer without the overhead of the reliability mechanisms of TCP. UDP is a connectionless, best-effort delivery protocol.
UDP Characteristics
- Operates at transport layer of OSI and TCP/IP models
- Provides applications with access to the network layer without the overhead of reliability mechanisms
- Is a connectionless protocol
- Provides limited error checking
- Provides best-effort delivery
- Has no data-recovery features
UDP Header
TCP is a protocol that operates at the transport layer and provides applications with access to the network layer. TCP is connection-oriented, provides error checking, delivers data reliably, operates in full-duplex mode, and provides some data recovery functions.
TCP Characteristics
- Transport layer of the TCP/IP stack
- Access to the network layer for applications
- Connection-oriented protocol
- Full-duplex mode operation
- Error checking
- Sequencing of data packets
- Acknowledgement of receipt
- Data-recovery features
TCP Header
UDP Characteristics
- Operates at transport layer of OSI and TCP/IP models
- Provides applications with access to the network layer without the overhead of reliability mechanisms
- Is a connectionless protocol
- Provides limited error checking
- Provides best-effort delivery
- Has no data-recovery features
UDP Header
TCP is a protocol that operates at the transport layer and provides applications with access to the network layer. TCP is connection-oriented, provides error checking, delivers data reliably, operates in full-duplex mode, and provides some data recovery functions.
TCP Characteristics
- Transport layer of the TCP/IP stack
- Access to the network layer for applications
- Connection-oriented protocol
- Full-duplex mode operation
- Error checking
- Sequencing of data packets
- Acknowledgement of receipt
- Data-recovery features
TCP Header
您没有权限查看这个主题的附件。
-
- 网站编辑
- 帖子: 767
- 注册时间: 2010年 12月 22日 04:06 星期三
Re: Network General Training - 05 Understanding the TCP/IP T
TCP/IP supports a number of applications, including FTP (supports bidirectional binary and ASCII file transfers), TFTP (transfers configuration files and Cisco IOS images), and Telnet (provides capability to remotely access another computer).
IP uses a protocol number in the datagram header to identify which protocol to use for a particular datagram.
Port numbers are used to map Layer 4 to an application.
Flow control avoids the problem of a transmitting host overflowing the buffers in the receiving host and slowing network performance.
TCP provides sequencing of segments with a forward reference acknowledgment. When a single segment is sent, receipt is acknowledged and the next segment is then sent.
The TCP window size decreases the transmission rate to a level at which congestion and data loss do not occur. The TCP window size allows a specified number of unacknowledged segments to be sent.
A fixed window is a window with an unchanging size that can accommodate a specific flow of segments.
A TCP sliding window is a window that can change size dynamically to accommodate the flow of segments.
TCP provides the sequencing of segments by providing sequence numbers and acknowledgment numbers in TCP headers.
IP uses a protocol number in the datagram header to identify which protocol to use for a particular datagram.
Port numbers are used to map Layer 4 to an application.
Flow control avoids the problem of a transmitting host overflowing the buffers in the receiving host and slowing network performance.
TCP provides sequencing of segments with a forward reference acknowledgment. When a single segment is sent, receipt is acknowledged and the next segment is then sent.
The TCP window size decreases the transmission rate to a level at which congestion and data loss do not occur. The TCP window size allows a specified number of unacknowledged segments to be sent.
A fixed window is a window with an unchanging size that can accommodate a specific flow of segments.
A TCP sliding window is a window that can change size dynamically to accommodate the flow of segments.
TCP provides the sequencing of segments by providing sequence numbers and acknowledgment numbers in TCP headers.
您没有权限查看这个主题的附件。