Download presentation
Presentation is loading. Please wait.
Published byChad Atkins Modified over 9 years ago
1
TCP/IP Protocol Suite 1 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 9 Internet Control Message Protocol Version 4 (ICMPv4)
2
TCP/IP Protocol Suite 2OBJECTIVES: To discuss the rationale for the existence of ICMP. To show how ICMP messages are divided into two categories: error reporting and query messages. To discuss the purpose and format of error-reporting messages. To discuss the purpose and format of query messages. To show how the checksum is calculated for an ICMP message. To show how debugging tools using the ICMP protocol. To show how a simple software package that implements ICMP is organized.
3
TCP/IP Protocol Suite 3 Chapter Outline 9.1 Introduction 9.2 Messages 9.3 Debugging Tools 9.4 ICMP Package
4
TCP/IP Protocol Suite 4 9-1 INTRODUCTION The IP protocol has no error-reporting or error correcting mechanism. What happens if something goes wrong? What happens if a router must discard a datagram because it cannot find a router to the final destination, or because the time-to-live field has a zero value? These are examples of situations where an error has occurred and the IP protocol has no built-in mechanism to notify the original host.
5
TCP/IP Protocol Suite 5 Topics Discussed in the Section The position of ICMP in the TCP/IP suite Encapsulation of ICMP Packets
6
TCP/IP Protocol Suite 6 Figure 9.1 Position of ICMP in the network layer
7
TCP/IP Protocol Suite 7 Figure 9.2 ICMP encapsulation
8
TCP/IP Protocol Suite 8 9-2 MESSAGES ICMP messages are divided into two broad categories: error-reporting messages and query messages. The error-reporting messages report problems that a router or a host (destination) may encounter when it processes an IP packet. The query messages, which occur in pairs, help a host or a network manager get specific information from a router or another host. Also, hosts can discover and learn about routers on their network and routers can help a node redirect its messages.
9
TCP/IP Protocol Suite 9 Topics Discussed in the Section Message Format Error Reporting Messages Query Messages Checksum
10
TCP/IP Protocol Suite 10
11
TCP/IP Protocol Suite 11 Figure 9.3 General format of ICMP messages
12
TCP/IP Protocol Suite 12 ICMP always reports error messages to the original source. Note
13
TCP/IP Protocol Suite 13 Figure 9.4 Error-reporting messages
14
TCP/IP Protocol Suite 14 No ICMP error message will be generated … - in response to a datagram carrying an ICMP error message - for a fragmented datagram that is not the first fragment - for a datagram having a multicast address - for a datagram having a special address
15
TCP/IP Protocol Suite 15 Figure 9.5 Contents of data field for the error message
16
TCP/IP Protocol Suite 16 Figure 9.6 Destination-unreachable format
17
TCP/IP Protocol Suite 17 Destination-unreachable messages with codes 2 or 3 can be created only by the destination host. Other destination-unreachable messages can be created only by routers. Note
18
TCP/IP Protocol Suite 18 A router cannot detect all problems that prevent the delivery of a packet. Note
19
TCP/IP Protocol Suite 19 There is no flow-control or congestion- control mechanism in the IP protocol. Note
20
TCP/IP Protocol Suite 20 Figure 9.7 Source-quench format
21
TCP/IP Protocol Suite 21 A source-quench message informs the source that a datagram has been discarded due to congestion in a router or the destination host. The source must slow down the sending of datagrams until the congestion is relieved. Note
22
TCP/IP Protocol Suite 22 One source-quench message is sent for each datagram that is discarded due to congestion. Note
23
TCP/IP Protocol Suite 23 Whenever a router decrements a datagram with a time-to-live value to zero, it discards the datagram and sends a time-exceeded message to the original source. Note
24
TCP/IP Protocol Suite 24 When the final destination does not receive all of the fragments in a set time, it discards the received fragments and sends a time-exceeded message to the original source. Note
25
TCP/IP Protocol Suite 25 Figure 9.8 Time-exceeded message format
26
TCP/IP Protocol Suite 26 In a time-exceeded message, code 0 is used only by routers to show that the value of the time-to-live field is zero. Code 1 is used only by the destination host to show that not all of the fragments have arrived within a set time. Note
27
TCP/IP Protocol Suite 27 A parameter-problem message can be created by a router or the destination host. Note
28
TCP/IP Protocol Suite 28 Figure 9.9 Parameter-problem message format
29
TCP/IP Protocol Suite 29 Figure 9.10 Redirection concept
30
TCP/IP Protocol Suite 30 A host usually starts with a small routing table that is gradually augmented and updated. One of the tools to accomplish this is the redirection message. Note
31
TCP/IP Protocol Suite 31 Figure 9.11 Redirection message format
32
TCP/IP Protocol Suite 32 A redirection message is sent from a router to a host on the same local network. Note
33
TCP/IP Protocol Suite 33 Query Messages Echo Request and Reply
34
TCP/IP Protocol Suite 34 An echo-request message can be sent by a host or router. An echo-reply message is sent by the host or router that receives an echo-request message. Note
35
TCP/IP Protocol Suite 35 Echo-request and echo-reply messages can be used by network managers to check the operation of the IP protocol. Note
36
TCP/IP Protocol Suite 36 Echo-request and echo-reply messages can test the reachability of a host. This is usually done by invoking the ping command. Note
37
TCP/IP Protocol Suite 37 Echo request and echo reply, can determine whether or not a node is functioning properly. The node to be tested is sent an echo-request message. The optional data field contains a message that must be repeated exactly by the responding node in its echo-reply message.
38
TCP/IP Protocol Suite 38 Figure 9.12 Echo-request and echo-reply message
39
TCP/IP Protocol Suite 39 Query Messages Echo Request and Reply Timestamp Request and Reply
40
TCP/IP Protocol Suite 40 Figure 9.13 Timestamp-request and timestamp-reply message format
41
TCP/IP Protocol Suite 41 Timestamp-request and timestamp-reply messages can be used to calculate the round-trip time between a source and a destination machine even if their clocks are not synchronized. Note
42
TCP/IP Protocol Suite 42 The timestamp-request and timestamp- reply messages can be used to synchronize two clocks in two machines if the exact one-way time duration is known. Note
43
TCP/IP Protocol Suite 43 Checksum In ICMP the checksum is calculated over the entire message (header and data).
44
TCP/IP Protocol Suite 44 Checksum Calculation Steps followed by the sender (using one’s complement arithmetic): 1. The checksum field is set to zero. 2. The sum of all the 16-bit words (header and data) is calculated. 3. The sum is complemented to get the checksum. 4. The checksum is stored in the checksum field.
45
TCP/IP Protocol Suite 45 Checksum Testing Steps followed by the receiver: 1. The sum of all words (header and data) is calculated. 2. The sum is complemented. 3. If the result obtained in step 2 is 16 0s, the message is accepted; otherwise, it is rejected.
46
TCP/IP Protocol Suite 46 Figure 9.14 shows an example of checksum calculation for a simple echo-request message (see Figure 9.12). We randomly chose the identifier to be 1 and the sequence number to be 9. The message is divided into 16-bit (2-byte) words. The words are added together and the sum is complemented. Now the sender can put this value in the checksum field. Example Example 9.1
47
TCP/IP Protocol Suite 47 Figure 9.14 Example of checksum calculation
48
TCP/IP Protocol Suite 48 9-3 DEBUGGING TOOLS There are several tools that can be used in the Internet for debugging. We can find if a host or router is alive and running. We can trace the route of a packet. We introduce two tools that use ICMP for debugging: ping and traceroute. We will introduce more tools in future chapters after we have discussed the corresponding protocols.
49
TCP/IP Protocol Suite 49 Topics Discussed in the Section Ping Traceroute
50
TCP/IP Protocol Suite 50 Ping The source host sends ICMP echo request messages (type: 8, code: 0); the destination, if alive, responds with ICMP echo reply messages.
51
TCP/IP Protocol Suite 51 We use the ping program to test the server fhda.edu. Example Example 9.2
52
TCP/IP Protocol Suite 52 For the second example, we want to know if the adelphia.net mail server is alive and running. The result is shown below: Note that in this case, we sent 14 packets, but only 13 have been returned. We may have interrupted the program before the last packet, with sequence number 13, was returned. Example Example 9.3
53
TCP/IP Protocol Suite 53 Example Example 9.3
54
TCP/IP Protocol Suite 54 Traceroute The Traceroute program sends two ICMP messages, time exceeded and destination unreachable, to find the route of a packet. This is a program at the application level that uses the services of UDP
55
TCP/IP Protocol Suite 55 Figure 9.15 The traceroute program operation
56
TCP/IP Protocol Suite 56 We use the traceroute program to find the route from the computer voyager.deanza.edu to the server fhda.edu. The following shows the result. Example Example 9.4
57
TCP/IP Protocol Suite 57 In this example, we trace a longer route, the route to xerox.com. The following is a partial listing. Example Example 9.5
58
TCP/IP Protocol Suite 58 An interesting point is that a host can send a traceroute packet to itself. This can be done by specifying the host as the destination. The packet goes to the loopback address as we expect. Example Example 9.6
59
TCP/IP Protocol Suite 59 Finally, we use the traceroute program to find the route between fhda.edu and mhhe.com (McGraw-Hill server). We notice that we cannot find the whole route. When traceroute does not receive a response within 5 seconds, it prints an asterisk to signify a problem (not the case in this example), and then tries the next hop. Example Example 9.7
60
TCP/IP Protocol Suite 60 9-4 ICMP PACKAGE To give an idea of how ICMP can handle the sending and receiving of ICMP messages, we present our version of an ICMP package made of two modules: an input module and an output module.
61
TCP/IP Protocol Suite 61 Topics Discussed in the Section Input Module Output Module
62
TCP/IP Protocol Suite 62 Figure 9.16 ICMP package
63
TCP/IP Protocol Suite 63
64
TCP/IP Protocol Suite 64
Similar presentations
© 2024 SlidePlayer.com Inc.
All rights reserved.