In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-10-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >
Share
Shulou(Shulou.com)06/01 Report--
Today's class mentioned IP head checksum how to calculate, it is really not very clear, so went to the Internet to check some information, sort out the records.
The calculation of the first checksum of IP consists of two steps: XOR and inversion, specifically.
1. IP header takes 16 bits as a unit, adding module 2 one by one (equivalent to XOR)
two。 The result is inverted and put into the checksum field as a checksum
3. The checksum field is filled with zeros when the checksum field is initially calculated
This is how the checksum is calculated for the sender, and for the receiver, the verification is simple:
1. The received IP header is summed up one by one in 16 bits.
two。 If the result is 1, the check is correct, otherwise the error is discarded.
The principle is very simple, the receiver's calculation object is the inverse XOR of An and A, and the result is, of course, 1!
Specific examples of program implementation are as follows:
SHORT checksum (USHORT* buffer, int size)
{
Unsigned long cksum = 0
/ / add every 16 bits
While (size > 1)
{
Cksum + = * buffer++
Size-= sizeof (USHORT)
}
/ / the last odd number section
If (size)
{
Cksum + = * (UCHAR*) buffer
}
Cksum = (cksum > > 16) + (cksum&0xffff); / / add high 16bit and low 16bit
Cksum + = (cksum > > 16); / / add the high 16bit to the low 16bit to ensure that the high 16 bits are 0
Return (USHORT) (~ cksum); / / finally invert the result to get checksum
}
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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.