Article ID: 129786
Article Last Modified on 2/22/2007
t1 - Response timer t2 - Acknowledgment timer ti - Inactivity timerThe timer values are specified in timer ticks. Each timer requires a short timer tick (xxTickOne, where xx is t1, t2, or ti) and long timer tick (xxTickTwo, where xx is t1, t2 or ti). The length of these timer ticks are specified within the Windows NT DLC Transport driver (in the registry) in 40 millisecond increments.
timer value = selected number * xxTickOne * 40msIf the selected number is between 6 and 10, the long timer tick (xxTickTwo) is used. In this case the timer value is equal to the selected number minus 5 multiplied by the long timer tick value.
timer value = (selected number - 5) * xxTickTwo * 40msThe response timer (t1) is used to detect a failure to receive an acknowledgment or a response from the remote link station.
Average Poll response time: Response delay added to T1 and (Ti): 40 ms 0 80 ms 16 * 40 = 640 ms 120 ms 16 * 40 = 640 ms 160 ms 32 * 40 = 1280 ms 200 ms 32 * 40 = 1280 ms 240 ms 48 * 40 = 1920 ms ...The poll response time is the time it takes for the remote end to respond to a frame sent with a Poll bit.
Parameter Short Tick Timer Long Tick Timer --------- ---------------- --------------- t1 2 7 t2 2 6 ti 5 10These multiplier values are used in conjunction with Windows NT Data Link Control transport settings to calculate the actual timer value used on the connection. The Windows NT DLC transport is configured with the following default timer values:
t1TickOne = 5 t1TickTwo = 25 (hex = 0x19) t2TickOne = 1 tT2TickTwo = 10 (hex = 0xa) tiTickOne = 25 (hex = 0x19) tiTickTwo = 125 (hex = 0x7d)
NOTE: These values are defined in the HKEY_LOCAL_MACHINE subtree of the
registry in the \SYSTEM
\CurrentControlSet
\Services
\DLC
\Parameters
\<network_adapter> directory.
WARNING: Using the Registry Editor incorrectly can cause serious,
system-wide problems that may require you to reinstall Windows NT to
correct them. Microsoft cannot guarantee that any problems resulting
from the use of the Registry Editor can be solved. Use this tool at your
own risk.
t1 timer = 2 * 5 * 40ms = 400ms (.4 seconds) t2 timer = 2 * 1 * 40ms = 80ms (.08 seconds) ti timer = 5 * 25 * 40ms = 5000ms (5 seconds)If SNA Server is connecting to the remote system over Token Ring across source routing bridges, then long tick timers are used, giving the following default timer settings:
t1 timer = (7-5) * 25 * 40ms = 2000ms (2 seconds) t2 timer = (6-5) * 10 * 40ms = 400ms (.4 seconds) ti timer = (10-5) * 125 * 40ms = 25000ms (25 seconds)The SNA Server ti, t2 and ti timers can be manually set for each connection. The maximum value of each timer is 10, which yields the following timeout periods:
t1 timer = (10-5) * 25 * 40ms = 5000ms (5 seconds) t2 timer = (10-5) * 10 * 40ms = 2000ms (2 seconds) ti timer = (10-5) * 125 * 40ms = 25000ms (25 seconds)To increase these timers further, the DLC transport timer settings must be increased within the registry. However, caution should be taken before changing these settings.
Additional query words: prodsna
Keywords: kbnetwork kbusage KB129786