100% found this document useful (3 votes)
58 views

Computer Networking A Top-Down Approach 6th Edition Kurose Solutions Manual download

The document provides links to download solution manuals and test banks for various textbooks, including 'Computer Networking: A Top-Down Approach' 6th Edition by Kurose. It includes detailed information on IP datagrams and ICMP messages, discussing aspects such as header fields, fragmentation, and packet sizes. Additionally, it emphasizes the importance of understanding networking concepts through practical examples.

Uploaded by

scarpshumpwz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (3 votes)
58 views

Computer Networking A Top-Down Approach 6th Edition Kurose Solutions Manual download

The document provides links to download solution manuals and test banks for various textbooks, including 'Computer Networking: A Top-Down Approach' 6th Edition by Kurose. It includes detailed information on IP datagrams and ICMP messages, discussing aspects such as header fields, fragmentation, and packet sizes. Additionally, it emphasizes the importance of understanding networking concepts through practical examples.

Uploaded by

scarpshumpwz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 36

Computer Networking A Top-Down Approach 6th Edition

Kurose Solutions Manual download pdf

https://testbankfan.com/product/computer-networking-a-top-down-
approach-6th-edition-kurose-solutions-manual/

Visit testbankfan.com today to download the complete set of


test banks or solution manuals!
Here are some recommended products for you. Click the link to
download, or explore more at testbankfan.com

Computer Networking A Top-Down Approach 7th Edition Kurose


Solutions Manual

https://testbankfan.com/product/computer-networking-a-top-down-
approach-7th-edition-kurose-solutions-manual/

Sociology A Down to Earth Approach Canadian 6th Edition


Henslin Solutions Manual

https://testbankfan.com/product/sociology-a-down-to-earth-approach-
canadian-6th-edition-henslin-solutions-manual/

Sociology A Down to Earth Approach Canadian 6th Edition


Henslin Test Bank

https://testbankfan.com/product/sociology-a-down-to-earth-approach-
canadian-6th-edition-henslin-test-bank/

Cengage Advantage Books Business Law Today The Essentials


Text and Summarized Cases 11th Edition Miller Test Bank

https://testbankfan.com/product/cengage-advantage-books-business-law-
today-the-essentials-text-and-summarized-cases-11th-edition-miller-
test-bank/
Taxation of Individuals 4th Edition Spilker Solutions
Manual

https://testbankfan.com/product/taxation-of-individuals-4th-edition-
spilker-solutions-manual/

Calculus and Its Applications 14th Edition Goldstein Test


Bank

https://testbankfan.com/product/calculus-and-its-applications-14th-
edition-goldstein-test-bank/

Basic Statistics for the Behavioral Sciences 7th Edition


Heiman Test Bank

https://testbankfan.com/product/basic-statistics-for-the-behavioral-
sciences-7th-edition-heiman-test-bank/

Foundations and Adult Health Nursing 7th Edition Cooper


Test Bank

https://testbankfan.com/product/foundations-and-adult-health-
nursing-7th-edition-cooper-test-bank/

Principles of Economics 12th Edition Case Solutions Manual

https://testbankfan.com/product/principles-of-economics-12th-edition-
case-solutions-manual/
Managers and the Legal Environment 9th Edition Bagley Test
Bank

https://testbankfan.com/product/managers-and-the-legal-
environment-9th-edition-bagley-test-bank/
Wireshark Lab: IP
SOLUTION
Supplement  to  Computer  Networking:  A  Top-­‐Down  
Approach,  6th  ed.,  J.F.  Kurose  and  K.W.  Ross  

 
 
©  2005-­‐21012,  J.F  Kurose  and  K.W.  Ross,  All  Rights  Reserved  

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Fig. 1 ICMP Echo Request message IP information

1. What is the IP address of your computer?


The IP address of my computer is 192.168.1.46
 
2. Within the IP packet header, what is the value in the upper layer protocol field?
Within the header, the value in the upper layer protocol field is ICMP (0x01)
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
 
3. How many bytes are in the IP header? How many bytes are in the payload of the
IP datagram? Explain how you determined the number of
payload bytes.
There are 20 bytes in the IP header, and 56 bytes total length, this
gives 36 bytes in the payload of the IP datagram

4. Has this IP datagram been fragmented? Explain how you determined whether or not
the datagram has been fragmented.
The more fragments bit = 0, so the data is not fragmented.
 
5. Which fields in the IP datagram always change from one datagram to the next
within this series of ICMP messages sent by your computer?
Identification, Time to live and Header checksum always change.
 
6. Which fields stay constant? Which of the fields must stay constant? Which fields
must change? Why?
The fields that stay constant across the IP datagrams are:
• Version (since we are using IPv4 for all packets)
• header length (since these are ICMP packets)
• source IP (since we are sending from the same source)
• destination IP (since we are sending to the same dest)
• Differentiated Services (since all packets are ICMP they use the same
Type of Service class)
• Upper Layer Protocol (since these are ICMP packets)
 
The fields that must stay constant are:
• Version (since we are using IPv4 for all packets)
• header length (since these are ICMP packets)
• source IP (since we are sending from the same source)
• destination IP (since we are sending to the same dest)
• Differentiated Services (since all packets are ICMP they use the same
Type of Service class)
• Upper Layer Protocol (since these are ICMP packets)
 
The fields that must change are:
• Identification(IP packets must have different ids)
• Time to live (traceroute increments each subsequent packet)
• Header checksum (since header changes, so must checksum)
 
7. Describe the pattern you see in the values in the Identification field of the IP
datagram
The pattern is that the IP header Identification fields increment with each
ICMP Echo (ping) request.

©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
Fig. 2 ICMP TTL exceeded reply, IP information
 
8. What is the value in the Identification field and the TTL field?
Identification: 30767
TTL: 64
 
9. Do these values remain unchanged for all of the ICMP TTL-exceeded replies sent
to your computer by the nearest (first hop) router? Why?
The identification field changes for all the ICMP TTL-exceeded replies
because the identification field is a unique value. When two or more IP
datagrams have the same identification value, then it means that these IP
datagrams are fragments of a single large IP datagram.
 
The TTL field remains unchanged because the TTL for the first hop router is
always the same.

©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
Fig. 3 ICMP Echo Request pkt size = 2000, first fragment
 
10. Find the first ICMP Echo Request message that was sent by your computer after
you changed the Packet Size in pingplotter to be 2000. Has that message been
fragmented across more than one IP datagram?
Yes, this packet has been fragmented across more than one IP datagram
 
11. Print out the first fragment of the fragmented IP datagram. What information in
the IP header indicates that the datagram been fragmented? What information in
the IP header indicates whether this is the first fragment versus a latter fragment?
How long is this IP datagram?
The Flags bit for more fragments is set, indicating that the datagram has been
fragmented. Since the fragment offset is 0, we know that this is the first
fragment. This first datagram has a total length of 1500, including the
header.

©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
Fig. 4 ICMP Echo Request pkt size = 2000, second fragment
 
12. Print out the second fragment of the fragmented IP datagram. What information in
the IP header indicates that this is not the first datagram fragment? Are the more
fragments? How can you tell?
We can tell that this is not the first fragment, since the fragment offset is
1480. It is the last fragment, since the more fragments flag is not set.
 
13. What fields change in the IP header between the first and second fragment?
The IP header fields that changed between the fragments are: total length,
flags, fragment offset, and checksum.

©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
Fig. 5 ICMP Echo Request pkt size = 3500, first fragment
 
14. How many fragments were created from the original datagram?
After switching to 3500, there are 3 packets created from the original
datagram.
 
15. What fields change in the IP header among the fragments?
The IP header fields that changed between all of the packets are: fragment
offset, and checksum. Between the first two packets and the last packet, we
see a change in total length, and also in the flags. The first two packets have
a total length of 1500, with the more fragments bit set to 1, and the last packet
has a total length of 540, with the more fragments bit set to 0.

©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved.
Random documents with unrelated
content Scribd suggests to you:
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
back
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.

More than just a book-buying platform, we strive to be a bridge


connecting you with timeless cultural and intellectual values. With an
elegant, user-friendly interface and a smart search system, you can
quickly find the books that best suit your interests. Additionally,
our special promotions and home delivery services help you save time
and fully enjoy the joy of reading.

Join us on a journey of knowledge exploration, passion nurturing, and


personal growth every day!

testbankfan.com

You might also like