Network Troubleshooting ๐Ÿ› ๏ธ

Diagnosing Connectivity Issues ๐Ÿ”

When network problems come up, the most common issue you'll run into is the inability to establish a connection to something. It could be a server you can't reach at all, or a website that isn't loading. Maybe you can only reach your resource on your LAN and can't connect to anything on the Internet. Whatever the problem is, being able to diagnose connectivity issues is an important part of network troubleshooting.

By the end of this lesson, you'll be able to use a number of important troubleshooting tools to help resolve these issues. ๐Ÿ’ป

Using ICMP for Error Reporting โš ๏ธ

When a network error occurs, the device that detects it needs some way to communicate this to the source of the problematic traffic. It could be that a router doesn't know how to route to a destination or that a certain port isn't reachable. It could even be that the TTL of an IP datagram expired and no further router hops will be attempted.

For all of these situations and more, ICMP (Internet Control Message Protocol) is used to communicate these issues. ICMP is mainly used by a router or remote host to communicate why transmission has failed back to the origin of the transmission. ๐Ÿ”–

The makeup of an ICMP packet is pretty simple. It has a header with a few fields and a data section that's used by a host to figure out which of their transmissions generated the error.

The first field is the type field, which specifies what type of message is being delivered. Some examples are "destination unreachable" or "time exceeded". Immediately after this is the code field which indicates a more specific reason for the message than just the type.

After this is a 16-bit checksum that works like every other checksum field we've covered so far. Next up is a 32-bit field called the "rest of header" which is optionally used by some of the specific types and codes to send more data.

Finally, there's the data payload for an ICMP packet, which contains the entire IP header and the first eight bytes of the data payload section of the offending packet. ๐Ÿ“ค

Using the Ping Tool ๐Ÿ“

ICMP wasn't really developed for humans to interact with. The point is so that these error messages can be delivered between networked computers automatically. But there's also a specific tool and two message types that are very useful to human operators.

This tool is called ping. Some version of it exists on just about every operating system and has for a very long time. Ping is a super simple program and the basics are the same no matter which operating system you're using.

Ping lets you send a special type of ICMP message called an echo request. An ICMP echo request essentially just asks a destination "Hey, are you there?". If the destination is up and running and able to communicate on the network, it'll send back an ICMP echo reply message type. ๐Ÿ”

You can invoke the ping command from the command line of any modern operating system. In its most basic use, you just type ping and a destination IP, or a fully qualified domain name.

The output of the ping command is very similar across each of the different operating systems. Every line of output will generally display the address sending the ICMP echo reply and how long it took for the round-trip communications. It will also have the TTL remaining and how large the ICMP message is in bytes.

Once the command ends, there will also be some statistics displayed, like percentage of packets transmitted and received, the average round-trip time, and a couple of other things like that. ๐Ÿ“Š

On Linux and macOS, the ping command will run until it's interrupted by an end user sending an interrupt event (Ctrl + C). On Windows, ping defaults to only sending four echo requests.

In all environments, ping supports a number of command line flags that let you change its behavior, like the number of echo requests to send, how large they should be, and how quickly they should be sent. Check out the documentation for your operating system to learn a little bit more. ๐Ÿ“š

Last updated