TCP: How are the seq / ack numbers generated?

前端 未结 8 1971
刺人心
刺人心 2021-02-01 20:50

I am currently working on a program which sniffs TCP packets being sent and received to and from a particular address. What I am trying to accomplish is replying with custom tai

相关标签:
8条回答
  • 2021-02-01 21:09

    These values reference the expected offsets of the start of the payload for the packet relative to the initial sequence number for the connection.

    Reference

    Sequence number (32 bits) – has a dual role If the SYN flag is set, then this is the initial sequence number. The sequence number of the actual first data byte will then be this sequence number plus 1. If the SYN flag is not set, then this is the sequence number of the first data byte

    Acknowledgement number (32 bits) – if the ACK flag is set then the value of this field is the next expected byte that the receiver is expecting.

    0 讨论(0)
  • 2021-02-01 21:10

    RFC 793 section 3.3 covers sequence numbers. Last time I wrote code at that level, I think we just kept a one-up counter for sequence numbers that persisted.

    0 讨论(0)
  • 2021-02-01 21:15

    When a TCP connection is established, each side generates a random number as its initial sequence number. It is a strongly random number: there are security problems if anybody on the internet can guess the sequence number, as they can easily forge packets to inject into the TCP stream.

    Thereafter, for every byte transmitted the sequence number will increment by 1. The ACK field is the sequence number from the other side, sent back to acknowledge reception.

    RFC 793, the original TCP protocol specification, can be of great help.

    0 讨论(0)
  • 2021-02-01 21:15

    I have the same job to do. Firstly the initial seq# will be generated randomly(0-4294967297). Then the receiver will count the length of the data it received and send the ACK of seq# + length = x to the sender. The sequence will then be x and the sender will send the data. Similarly the receiver will count the length x + length = y and send the ACK as y and so on... Its how the the seq/ack is generated...

    If you want to show it practically try to sniff a packet in Wireshark and follow the TCP stream and see the scenario...

    0 讨论(0)
  • The sequence numbers increment after a connection is established. The initial sequence number on a new connection is ideally chosen at random but a lot of OS's have some semi-random algorithm. The RFC's are the best place to find out more TCP RFC.

    0 讨论(0)
  • 2021-02-01 21:22

    Numbers are randomly generated from both sides, then increased by number of octets (bytes) send.

    0 讨论(0)
提交回复
热议问题