일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- logback
- Salting
- Debezium
- minreplica
- yml
- Software maestro
- eks
- SW Maestro
- 스프링부트
- Kafka
- 0 replica
- propogation
- zset
- Leaderboard
- keda
- Strimzi
- Kubernetes
- Database
- 동등성
- slow query
- blue-green
- MSSQL
- Benchmarks
- traceId
- Helm
- SW 마에스트로
- spring boot
- docket
- Grafana
- hammerDB
- Today
- Total
김태오
TCP and SCTP 본문
TCP (Transmission Control Protocol) and SCTP (Stream Control Transmission Protocol) are both transport layer protocols used in computer networks to establish reliable connections and transfer data between devices.
TCP:
Connection-oriented: Before data transfer, a connection must be established between the sender and receiver.
Reliable: It ensures data is delivered correctly by using acknowledgements, retransmission of lost packets, and error-checking.
Ordered delivery: Data is sent in a specific order, and the receiver reassembles it in the same order.
Congestion control: TCP adjusts the rate of data transmission based on network conditions to prevent congestion.
SCTP:
Connection-oriented: Like TCP, it establishes a connection between the sender and receiver before data transfer.
Reliable: SCTP also ensures correct data delivery through acknowledgements, retransmission, and error-checking.
Multi-streaming: It can send multiple streams of data simultaneously, allowing different streams to be processed independently.
Multi-homing: SCTP supports multiple IP addresses for a single connection, providing redundancy and fault tolerance.
In summary, both TCP and SCTP are used for reliable data transmission, but SCTP has some additional features like multi-streaming and multi-homing that make it more versatile for certain applications.
'Networking' 카테고리의 다른 글
Reliable vs. Unreliable (0) | 2023.04.24 |
---|---|
UDP (0) | 2023.04.24 |
Connectionless vs. Connection-Oriented (0) | 2023.04.24 |
Multiplexer , Demultiplexer (0) | 2023.04.24 |
IP Address vs. Port Number (0) | 2023.04.24 |