C. Intercept several TCP packets until you can view the three way handshake (read about this on pg 118 and 119). What are the sequence and acknowledgement numbers on all 3 segments?
A three-way handshake in TCp is also call the tree message handshake. It is used to establish TCP socket connections and tear down TCP socket connections over the network. TCP's three way handshaking technique is referred to as the 3-way handshake or as "SYN-SYN-ACK". It is designed so that two computers attempting to communicate can negotiate the parameters of the network TCP socket connection before beginning communication.
You can see this in the top three lines.
Seq=0
Ack=1
Seq=1, Ack=1
A three-way handshake in TCp is also call the tree message handshake. It is used to establish TCP socket connections and tear down TCP socket connections over the network. TCP's three way handshaking technique is referred to as the 3-way handshake or as "SYN-SYN-ACK". It is designed so that two computers attempting to communicate can negotiate the parameters of the network TCP socket connection before beginning communication.
You can see this in the top three lines.
Seq=0
Ack=1
Seq=1, Ack=1