Computer Science, asked by bhavanavimal7115, 1 year ago

Host a sends a tcp segment (seq = 43, ack = 103), to which host b replies with a tcp segment (seq = 103, ack = 57). the payload of the first tcp segment is

Answers

Answered by Priya0214
0
TCP sequence numbers are random to start. An analyzer like Wireshark, though, can (and maybe does by default?) show the sequence numbers RELATIVE to what they were when the session started.Assuming relative sequence numbers are used, the first packet from host A containing a payload, after the three way handshake, should have Seq 1, Ack 1.The response from host B would indicate the ACK from the handshake, 1, incremented by the number of bytes received.
Similar questions