View TCPkeepalive attributes in Linux

Source: Internet
Author: User
Article Title: View TCPkeepalive attributes in Linux. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.

Tcp is connection-oriented. In practice, it is usually necessary to check whether the connection is available. if the connection is unavailable, it can be divided:

A. The connection peer is normally closed.

B. the connection peer is abnormally closed, including power loss, program crash, and network interruption. in this case, the peer end cannot be notified, so the connection will always exist, wasting resources of the country.

The tcp protocol stack has a keepalive attribute, which can actively detect whether the socket is available, but the default value of this attribute is large.

The global settings can be changed to/etc/sysctl. conf, plus:

        
         net.ipv4.tcp_keepalive_intvl = 20net.ipv4.tcp_keepalive_probes = 3net.ipv4.tcp_keepalive_time = 60
        

Set in the program as follows:

        
         
# Include int keepAlive = 1; // enable the keepalive attribute int keepIdle = 60; // if the connection has no data exchange within 60 seconds, int keepInterval = 5; // The packet interval when the test is performed is 5 seconds int keepCount = 3; // The number of test attempts. if the response is received for 1st times, the next two times will not be sent again. setsockopt (rs, SOL_SOCKET, SO_KEEPALIVE, (void *) & keepAlive, sizeof (keepAlive); setsockopt (rs, SOL_TCP, TCP_KEEPIDLE, (void *) & keepIdle, sizeof (keepIdle); setsockopt (rs, SOL_TCP, TCP_KEEPINTVL, (void *) & keepInterval, sizeof (keepInterval); setsockopt (rs, SOL_TCP, TCP_KEEPCNT, (void *) & keepCount, sizeof (keepCount ));
        

In the program, when tcp detects that the peer socket is no longer available (the detection package cannot be issued, or the detection package does not receive the ACK response package), select returns the socket readable, in addition,-1 is returned for recv and errno is set to ETIMEDOUT.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.