Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Calculation of IP header checksum

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

The calculation method of IP header checksum:

Algorithm:

SHORT checksum (USHORT* buffer, int size)

{

Unsigned long cksum = 0

While (size > 1)

{

Cksum + = * buffer++

Size-= sizeof (USHORT)

}

If (size)

{

Cksum + = * (UCHAR*) buffer

}

Cksum = (cksum > > 16) + (cksum&0xffff)

Cksum + = (cksum > > 16)

Return (USHORT) (~ cksum)

}

(1) set the checksum field of IP packet to 0;

(2) the head is regarded as a 16-bit number, and the binary sum is carried out in turn (note: when summing, the carry of the highest bit should be saved, so the addition should be 32-bit addition);

(3) add the carry (the highest carry) generated in the above addition process to the low 16 bits (when using 32 bit addition, that is, the high 16 bits and the low 16 bits are added, and then the carry generated by the highest bit of the addition is added to the low 16 bits)

(4) if the above sum is reversed, the checksum will be obtained.

Example:

IP header:

45 00 00 31

89 F5 00 00

6e 06 00 00 (check field)

DE B7 45 5D-> 222.183.69.93

C0 A8 00 DC-> 192.168.0.220

Calculate:

4500 + 0031 + 89F5 + 0000 + 6e06 + 0000 + DEB7 + 455D + C0A8 + 00DC = 3 22C4

0003 + 22C4 = 22C7

~ 22C7 = DD38-> is the checksum that should be filled

When receiving an IP packet, to check whether the IP header is correct, check the IP header, using the same method as above:

Calculate:

4500 + 0031 + 89F5 + 0000 + 6E06 + DD38 + DEB7 + 455D + C0A8 + 00DC = 3 FFFC

0003 + FFFC = FFFF

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report