How often does the TCP client try to establish a connection? How much time elapses between repeated attempts to open a connection?
What will be an ideal response?
The TCP client tries to establish connection by sending a series of SYN packets.The TCP client tries a total of 6 times. The times delta from the previous packet are:
```
No. Time Source Destination Protocol Info
1 0.000000 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
2 2.999619 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
3 8.999624 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
4 20.999625 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
5 44.999644 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
6 92.999627 10.0.5.11 10.0.5.100 TCP 3105 >
telnet [SYN] Seq=2278966645 Ack=0 Win=5840 Len=0
```
The time intervals are 0, 3, 6, 12, 24, and 48 which is double the previous period. And it finally terminates after 93 seconds.
You might also like to view...
To repeat column headings that appear on the left side of a worksheet on each page of a printout, select the ________ option in the Page Setup dialog box
A) Repeat Labels B) Print Labels C) Repeat D) Columns to repeat at left
?Which of the following methods is used to determine the day of the week on which a month starts?
A. ?calDay; B. ?day.calDay() C. ?find.Day; D. ?getDay()