更改linux网络设备的TCP超时

更改linux网络设备的TCP超时,linux,tcp,linux-device-driver,Linux,Tcp,Linux Device Driver,我在一个非常慢的界面上编写linux设备驱动程序,其ping循环时间可能长达几分钟。当我尝试使用TCP在两个节点之间建立连接时,连接总是超时 是否有方法在驱动程序中设置更长的TCP重传或握手超时时间,或者是否有任何命令可用于设置?谢谢您是否尝试过搜索此问题的答案?谷歌给了我一个快速搜索,这似乎直接解决了这个问题。总结是,net.ipv4.tcp\u syn\u retries的设置决定了tcp连接可用的最大超时 如果该文档没有回答您的问题,您应该指出您尝试了什么,以及行为与您预期的不同 /pro

我在一个非常慢的界面上编写linux设备驱动程序,其ping循环时间可能长达几分钟。当我尝试使用TCP在两个节点之间建立连接时,连接总是超时


是否有方法在驱动程序中设置更长的TCP重传或握手超时时间,或者是否有任何命令可用于设置?谢谢

您是否尝试过搜索此问题的答案?谷歌给了我一个快速搜索,这似乎直接解决了这个问题。总结是,
net.ipv4.tcp\u syn\u retries
的设置决定了tcp连接可用的最大超时

如果该文档没有回答您的问题,您应该指出您尝试了什么,以及行为与您预期的不同

/proc/sys/net/ipv4/tcp_retries1
/proc/sys/net/ipv4/tcp_retries2


谢谢你的回答真的很有帮助。但是我可以为不同的接口设置不同的超时吗?
tcp_retries1 - INTEGER


 This value influences the time, after which TCP decides, that
    something is wrong due to unacknowledged RTO retransmissions,
    and reports this suspicion to the network layer.
    See tcp_retries2 for more details.

    RFC 1122 recommends at least 3 retransmissions, which is the
    default.


tcp_retries2 - INTEGER

This value influences the timeout of an alive TCP connection,
when RTO retransmissions remain unacknowledged.
Given a value of N, a hypothetical TCP connection following
exponential backoff with an initial RTO of TCP_RTO_MIN would
retransmit N times before killing the connection at the (N+1)th RTO.

The default value of 15 yields a hypothetical timeout of 924.6
seconds and is a lower bound for the effective timeout.
TCP will effectively time out at the first RTO which exceeds the
hypothetical timeout.

RFC 1122 recommends at least 100 seconds for the timeout,
which corresponds to a value of at least 8.