जवाबों:
नहीं, आप नहीं कर सकते; यह कर्नेल में हार्डकोड है। इसलिए कर्नेल और रीकैपाइल बदलें।
#define TCP_TIMEOUT_INIT ((unsigned)(3*HZ)) /* RFC 1122 initial RTO value */
यह वही है जो आपको अपने शामिल / नेट / tcp.h में प्राप्त करना चाहिए।
लेकिन मैं देख सकता हूं कि किसी ने एक पैच प्रदान किया , भले ही उसने खुद कभी कोशिश नहीं की
प्रारंभिक सेटिंग आपके समग्र प्रदर्शन को बहुत प्रभावित नहीं करना चाहिए, क्योंकि आरटीओ नेटवर्क स्थितियों के लिए स्वयं को समायोजित करता है। यदि आप RTO बदलते हैं, तो आप इसे 1 सेकंड (लेकिन कम नहीं) पर सेट कर सकते हैं।
RFC 1122 में इसकी चर्चा है :
The following values SHOULD be used to initialize the estimation parameters for a new connection:
(a) RTT = 0 seconds.
(b) RTO = 3 seconds. (The smoothed variance is to be
initialized to the value that will result in this RTO).
The recommended upper and lower bounds on the RTO are known
to be inadequate on large internets. The lower bound SHOULD
be measured in fractions of a second (to accommodate high
speed LANs) and the upper bound should be 2*MSL, i.e., 240
seconds.
DISCUSSION:
Experience has shown that these initialization values
are reasonable, and that in any case the Karn and
Jacobson algorithms make TCP behavior reasonably
insensitive to the initial parameter choices.
RFC 6298 एक प्रस्तावित अपडेट (जून 2011 में प्रकाशित) है जो कहता है कि आरटीओ को कम मूल्य (लेकिन 1 सेकंड से कम नहीं) में आरंभीकृत किया जा सकता है, और इसमें एक परिशिष्ट युक्त डेटा शामिल है जो 1 सेकंड को एक उचित प्रारंभिक मूल्य के रूप में बताता है ।