Ma Zai Comics: How to "wave four times" to your girlfriend

Ma Zai Comics: How to "wave four times" to your girlfriend

[[357361]]

This article is reprinted from the WeChat public account "Ma Ge Dan", the author is Ma Zai. Please contact the WeChat public account "Ma Ge Dan" to reprint this article.

MSL is Maximum Segment Lifetime, the maximum survival time of a message. It is the longest time that any message can exist on the network. If it exceeds this time, the message will be discarded. Because TCP messages are based on the IP protocol, and there is a TTL field in the IP header, which is the maximum number of routes that an IP datagram can pass through. This value decreases by 1 for each router that processes it. When this value is 0, the datagram will be discarded, and an ICMP message will be sent to notify the source host.

The difference between MSL and TTL: The unit of MSL is time, while TTL is the number of routing hops. Therefore, MSL should be greater than or equal to the time when TTL is 0 to ensure that the message has been naturally destroyed.

TIME_WAIT waits for 2 times of MSL. A more reasonable explanation is that there may be data packets from the sender in the network. When these data packets from the sender are processed by the receiver, they will send a response to the other party, so it takes 2 times the time to wait for a round trip.

For example, if the passive closing party does not receive the last ACK message of the disconnection, it will trigger a timeout and resend the Fin message. After the other party receives the FIN, it will resend ACK to the passive closing party. The total time is exactly 2 MSLs.

The 2MSL time starts from the time the client sends ACK after receiving FIN. If the client receives a FIN message resent by the server during the TIME-WAIT time because the client's ACK is not transmitted to the server, the 2MSL time will be restarted.

In Linux, 2MSL defaults to 60 seconds, so 1MSL is 30 seconds. The Linux system stays in TIME_WAIT for a fixed 60 seconds.

Its name defined in the Linux kernel code is TCP_TIMEWAIT_LEN:

  1. #define TCP_TIMEWAIT_LEN (60*HZ) /* how long to wait to destroy TIME -WAIT
  2. state, about 60 seconds */

If you want to change the length of TIME_WAIT, you can only modify the value of TCP_TIMEWAIT_LEN in the Linux kernel code and recompile the Linux kernel.

The TIME-WAIT state is needed mainly for two reasons:

  • Prevent "old" packets with the same "quadruple" from being received;
  • Ensure that the "passive closing connection" party can be closed correctly, that is, ensure that the final ACK can be received by the passive closing party, so as to help it close normally;

<<:  When to use 5G and when to use Wi-Fi 6

>>:  What process resources are shared between threads?

Recommend

5G Ready: Enabling Technology to Prepare for the Future of Work

5G opens the door to major technological advances...

Cool Knowledge: Learn about RF Antennas in One Article

RF Antenna picture An antenna is a device used to...

Global spending on 5G network infrastructure nearly doubled in 2020

According to the latest forecast from Gartner, gl...

5G competition is not just about speed, security mechanisms need to be clarified

Currently, 5G standardization has been fully laun...

What else does 5G have besides being fast?

The chaos in the domestic communications industry...

Summary of common troubleshooting methods for network broadband

1. FTTH troubleshooting steps Step 1: Check the s...