Issue
Some people said that there are 4 tuples in a connection
client IP address, client port number, server IP address, server port number
Some said that there are 5
client IP address, client port number, server IP address, server port number, protocol
Which one is correct ?
Solution
You've misunderstood the terminology. A TCP connection is identified by a 5-tuple. That means one tuple, with 5 elements. The five elements are:
- Protocol. This is often omitted as it is understood that we are talking about TCP, which leaves 4.
- Source IP address.
- Source port.
- Target IP address.
- Target port.
Answered By - user207421 Answer Checked By - Gilberto Lyons (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.