≡ Menu

How to Calculate IP Header Checksum (With an Example)

If you have ever tried to understand the TCP/IP protocols then you would have definitely stumbled upon the checksum field that is the part of protocol headers like TCP, IP etc.

Have you ever given a thought about things like what exactly is checksum, why is it used and how it is calculated. Well, in this article we will have a brief discussion on the concept of checksum and then we will go into details of how checksum is calculated.

What is Checksum?

A check sum is basically a value that is computed from data packet to check its integrity. Through integrity, we mean a check on whether the data received is error free or not. This is because while traveling on network a data packet can become corrupt and there has to be a way at the receiving end to know that data is corrupted or not. This is the reason the checksum field is added to the header. At the source side, the checksum is calculated and set in header as a field. At the destination side, the checksum is again calculated and crosschecked with the existing checksum value in header to see if the data packet is OK or not.

IP header checksum

IP header checksum is calculated over IP header only as the data that generally follows the IP header (like ICMP, TCP etc) have their own checksums. Now, to calculate the IP header algorithm one must know the basic header structure of IP protocol. So here is a basic format of how IP header looks like :

NOTE: To have a good understanding of the IP header fields, refer to: IP Protocol Header Fundamentals

So, as far as the algorithm goes, IP header checksum is : 16 bit one’s complement of the one’s complement sum of all 16 bit words in the header

This means that if we divide the IP header is 16 bit words and sum each of them up and then finally do a one’s compliment of the sum then the value generated out of this operation would be the checksum.

Now, the above is done at the source side which is sending the data packet. At the destination side which receives the data packet replaces the checksum value in the header with all zeros and then calculates the checksum based on the same algorithm as mentioned above. After a checksum value is obtained then this value is compared with the value that came in the header. This comparison decides whether the IP header is fine or corrupted.

IP Header Checksum Example

Since now we have enough theoretical knowledge on IP header checksum, lets take an IP header and actually try this algorithm out.

Here is a IP header from an IP packet received at destination :

4500 003c 1c46 4000 4006 b1e6 ac10 0a63 ac10 0a0c

Lets first map these values with the header

  • ’45’ corresponds to the first two fields in the header ie  ‘4’ corresponds to the IP version and ‘5’ corresponds to the header length. Since header length is described in 4 byte words so actual header length comes out to be 5×4=20 bytes.
  • ’00’ corresponds to TOS or the type of service. This value of TOS indicated normal operation.
  • ‘003c’ corresponds to total length field of IP header. So in this case the total length of IP packet is 60.
  • ‘1c46’ corresponds to the identification field.
  • ‘4000’ can be divided into two bytes. These two bytes (divided into 3 bits and 13 bits respectively) correspond to the flags and fragment offset of IP header fields.
  • ‘4006’ can be divided into ’40’ and ’06’. The first byte ’40’ corresponds to the TTL field and the byte ’06’ corresponds to the protocol field of the IP header. ’06’ indicates that the protocol is TCP.
  • ‘be16’ corresponds to the checksum which is set at the source end (which sent the packet). Please note that as already discussed this field will be set to zero while computing the checksum at destination end.
  • The next set of bytes ‘ac10’ and ‘0a0c’ correspond to the source IP address and the destination IP address in the IP header.

So now we have a basic idea as to what these fields map to in IP header. Lets convert all these values in binary :

4500 -> 0100010100000000
003c -> 0000000000111100
1c46 -> 0001110001000110
4000 -> 0100000000000000
4006 -> 0100000000000110
0000 -> 0000000000000000 // Note that the checksum is set to zero since we are computing checksum at destination end
ac10 -> 1010110000010000
0a63 -> 0000101001100011
ac10 -> 1010110000010000
0a0c -> 0000101000001100

Now lets add these binary values one by one :

4500 -> 0100010100000000
003c -> 0000000000111100
453C -> 0100010100111100  /// First result

453C -> 0100010100111100  // First result plus next 16-bit word.
1c46 -> 0001110001000110
6182 -> 0110000110000010 // Second result.

6182 -> 0110000110000010 // Second result plus next 16-bit word.
4000 -> 0100000000000000
A182 -> 1010000110000010 // Third result.

A182 -> 1010000110000010 // Third result plus next 16-bit word.
4006 -> 0100000000000110
E188 -> 1110000110001000 // Fourth result.

E188 -> 1110000110001000 // Fourth result plus next 16-bit word.
AC10 -> 1010110000010000
18D98 -> 11000110110011000 // One odd bit (carry),  add that odd bit to the result as we need to keep the checksum in 16 bits.

18D98 -> 11000110110011000
8D99 -> 1000110110011001 // Fifth result

8D99 -> 1000110110011001 // Fifth result plus next 16-bit word.
0A63 -> 0000101001100011
97FC -> 1001011111111100 // Sixth result

97FC -> 1001011111111100  // Sixth result plus next 16-bit word.
AC10 -> 1010110000010000
1440C -> 10100010000001100 // Again a carry, so we add it (as done before)

1440C -> 10100010000001100
440D -> 0100010000001101 // This is seventh result

440D -> 0100010000001101 //Seventh result plus next 16-bit word
0A0C -> 0000101000001100
4E19 -> 0100111000011001 // Final result.

So now 0100111000011001 is our final result of summing up all the 16 bit words in the header. As a last step we just need to do a one’s compliment of it to obtain the checksum.

4E19 -> 0100111000011001
B1E6 ->1011000111100110 // CHECKSUM

Now if you compare this checksum with the one obtained in the packet you will find that both are exactly same and hence the IP header’s integrity was not lost.

So this is the way we calculate IP header checksum to check the integrity of IP header.

Add your comment

If you enjoyed this article, you might also like..

  1. 50 Linux Sysadmin Tutorials
  2. 50 Most Frequently Used Linux Commands (With Examples)
  3. Top 25 Best Linux Performance Monitoring and Debugging Tools
  4. Mommy, I found it! – 15 Practical Linux Find Command Examples
  5. Linux 101 Hacks 2nd Edition eBook Linux 101 Hacks Book

Bash 101 Hacks Book Sed and Awk 101 Hacks Book Nagios Core 3 Book Vim 101 Hacks Book

Comments on this entry are closed.

  • Jalal Hajigholamali May 17, 2012, 2:49 am

    Hi,

    Thanks again for very nice article…

  • bob May 17, 2012, 7:29 am

    Thanks again for a good article. Examples are great.

  • Ravi May 17, 2012, 8:08 am

    Hi,
    Thanks again for very nice article…

  • Pierre B. May 17, 2012, 9:28 am

    TGS strikes again!

    This IS a good tutorial, definitely a good one! Thanks for your effort. In case some of your readers want some more information about Checksums, encryption etc. be sure to check this one out . It is also a good one.

    Thx Arora.

  • Ran May 17, 2012, 2:23 pm

    RGI – Really Good Information!
    Thanks for the time,

  • rajesh May 17, 2012, 9:53 pm

    Great article. cheers

  • Richard May 22, 2012, 8:47 am

    Would be useful if you could add the tcpdump command you used to view the IP header.

  • Vasudev May 25, 2012, 12:53 am

    Nice tutorial once again. Thanx a lot for for sharing such valuable information.

  • MTMD August 18, 2012, 4:01 am

    Thanks so much. It helps me a lot.

  • William November 4, 2012, 3:52 pm

    Hey great article, but shouldn’t there be an additional two bytes for your source and destination ip addresses? these are 4 byte values not two…

  • Pramod November 6, 2012, 4:40 am

    Very good article to understand Checksum of an IP header..
    Good work.

  • Ram November 16, 2012, 5:44 am

    i m mcs student and i asked que ie Q1. Calculate cheksum at sender for an IPV4 packet header without option (section size= 16 bits)

    4 | 10 | 0 | 32 |
    ———————————————
    1 | 0 | 0 |
    ———————————————
    4 | 17 | 0 |
    ———————————————
    10.12.10.6 |
    ———————————————-
    12.10.8.4 |
    ———————————————-

    i want how to solve this ex: ?

  • Sadeer Nasser January 6, 2013, 10:00 pm

    Very well written, thank you.

  • Prasad January 31, 2013, 3:45 am

    Good aritcle

  • Mady August 25, 2013, 9:22 am

    good article. it helped a lot in remembering IP header also

  • Ansh September 10, 2013, 9:25 pm

    Very well explained. Thank you

  • soyeon han October 6, 2013, 11:02 am

    really really appreciate your article. it helped me a loooot.

  • Salah November 6, 2013, 6:28 pm

    It is very simple and no need for the complication. Just add all the blocks in hex using your own calculator, the add the carry to the result .
    complement the result, if u get zero, then your data is correct..
    so 1-
    (4500+003c+1c46+4000+4006+b1e6+ac10+0a63+ac10+0a0c)
    the result is (2 FFFD)
    so I did simple calculation
    (2+FFFD=FFFF)
    which has the complement of 0000. then the result is correct

  • hadas January 4, 2014, 2:37 pm

    thank a lot, it realy helped me!!!

  • Youssef February 4, 2014, 5:00 am

    This is a mistake made by accident:
    “’003c’ corresponds to total length field of IP header.” It’s not the IP header, it’s the IP packet.

    again, another accidental mistake: ‘be16′ corresponds to the checksum which is set at the source end.
    It’s b1e6

  • Anonymous March 17, 2014, 3:30 am

    Hi Could you please tell me how Header checksum is different from FCS in ethernet frame.

  • dhananjaya July 14, 2014, 9:52 pm

    Thanks a lot!!!!

  • Rajesh December 10, 2014, 8:02 am

    Thanks a lot .. I have one question

    “The next set of bytes ‘ac10′ and ’0a0c’ correspond to the source IP address and the destination IP address in the IP header”

    I am assuming both address are 32 bit , ‘ac10 0a63 ‘ and ‘ac10 0a0c’ corresponds to Source and destination address respectively .. Did i miss something here ?

  • Theodore May 12, 2015, 2:52 pm

    Thanks!
    very nice!!!

  • bvk June 24, 2015, 1:35 am

    good one

  • Ehsan September 28, 2015, 2:50 am

    thanks
    very useful

  • Muhammad Bilal November 18, 2015, 5:11 am

    Thank you. Good and easy to understand!

  • Naveed Akhtar Baloch November 23, 2015, 1:36 am

    Great Article 🙂

  • Mohsin November 24, 2015, 1:38 pm

    Thanks: ) for this fully informative article

  • Dipika December 17, 2015, 3:43 pm

    Thanks………….. you are a savior!

  • Bilal Ali Khan January 4, 2016, 12:41 pm

    thank you. Helped Alot!

  • thota April 7, 2016, 9:00 am

    nice… explanation

  • Daniel April 20, 2016, 9:31 am

    Super cool, made me able to implement my check quickly.
    THX!

  • Qi June 22, 2016, 11:54 pm

    Very nice!