Site icon DesignLinux

LFCA: Learn Basic Network Troubleshooting Tips – Part 12

When systems encounter issues, as they sometimes will, you need to know your way around the problem and restore them back to a normal and functioning state. In this section, we focus on fundamental network troubleshooting skills that any Linux systems administrator should have.

Fundamental Understanding of Network Troubleshooting

In most cases, there is a wide gap between network admins and sysadmins. Sysadmins lacking network visibility will usually blame network administrators for outages and downtimes while network admins will insufficient server knowledge will often turn the blame of sysadmins for endpoint device failure. However, the blame game doesn’t help solve problems and in a work environment, this can antagonize relationships between colleagues.

As a sysadmin, having a fundamental understanding of network troubleshooting will help resolve issues faster and help promote a cohesive working environment. It’s for this reason that we have put together this section to highlight some of the basic network troubleshooting tips that will come in handy when diagnosing network-related problems.

A Recap of the TCP / IP Model

In our previous topic of the LFCA series, we looked at the TCP/IP conceptual model that shows the transmission of data in a computer and the protocols that are found in each layer.

TCP/IP Layer Model

Another equally important conceptual model is the OSI model (Open Systems Interconnection) model. It’s a 7 layer TCP/IP framework that breaks down a networking system, and computing functions as every layer.

In the OSI model, these functions are segmented into the following layers starting from the bottom. Physical Layer, Data Link Layer, Network Layer, Transport Layer, Session Layer. Presentation Layer, & finally Application Layer at the very top.

OSI Model

It is impossible to talk about network troubleshooting without making reference to the OSI model. For this reason, we will walk you through each layer and find out the various network protocols used and how to troubleshoot faults associated with every layer.

Layer 1: Physical Layer

This is probably one of the most overlooked layers, yet it’s one of the most essential layers required for any communication to take place. The Physical layer encompasses the physical PC networking components of a PC such as network cards, Ethernet cables, optical fibers, etc. Most problems begin here and range from an unplugged/damaged ethernet cable to signal attenuation.

In this layer, the most crucial question that comes to mind is “Is the physical network link up?”. To check the status of your network interfaces, run the ip command:

$ ip link show
Check Network Interface Status

From the output above, We have 2 interfaces. The first interface – lo – is the loopback address and is usually not used. The active network interface that provides connectivity to the network and the internet is the enp0s3 interface. We can see from the output that the state of the interface is UP.

If a network interface is down, you will see the state DOWN output.

Network Interface Down

If that is the case, you can bring the interface up using the command:

$ sudo ip link set enp0s3 up
Active Network Interface

Just to confirm that your PC has picked an IP address from the router or DHCP server, run the ifconfig command.

$ ifconfig
Check Server IP Address

Layer 2: Data Link Layer

Essentially, the data link layer determines the data format on the network. This is where the communication of data frames between hosts takes place. The predominant protocol in this layer is the ARP ( Address Resolution Protocol).

ARP is responsible for discovering link-layer addresses and performs mapping of IPv4 addresses on layer 3 to MAC addresses. Usually, when a host contacts the default gateway, chances are that it already has the host’s IP, but not the MAC addresses.

The ARP protocol bridges the gap between layer 3 and layer 2 by translating the 32-bit IPv4 addresses on layer 3 to 48-bit MAC addresses on layer 2 and vice-versa.

When a PC joins a LAN network, the router ( default gateway ) assigns it an IP address for identification. When another host sends a data packet destined to the PC to the default gateway, the router requests ARP to look out for the MAC address that goes with the IP address.

Every system has its own ARP table. To check your ARP table, run the command:

$ ip neighbor show
Check Network ARP Table

As you can notice, the router’s MAC address is populated. If there’s a resolution problem, the command returns no output.

Layer 3: Network / Internet Layer

This is the layer that you exclusively work with IPv4 addresses that are familiar with system administrators. It provides multiple protocols such as ICMP and ARP which we have covered and others such as RIP (Routing Information Protocol).

Some of the common problems include device misconfiguration or problems with network devices such as routers and switches. A good place to start troubleshooting is to check if your system has picked an IP address as follows:

$ ifconfig
Check Server IP Address

Also, you can use the ping command to check internet connectivity by sending an ICMP echo packet to Google’s DNS.

$ ping 8.8.8.8 -c 4
Check Network Activity

The output shows a positive reply from Google’s DNS with zero packet loss. If you are having an intermittent connection, you can check which point the packets are being dropped using the traceroute command as follows.

$ traceroute google.com
Trace Network Activity

Layer 4: Transport Layer

The transport layer handles data transmission using TCP and UDP protocols. Just to recap, TCP is a connection-oriented protocol while UDP is connectionless. Running application listen on sockets which comprise of ports and IP addresses.

Common problems that may occur including blocked TCP ports which may be required by applications. If you have a web server and you want to verify its running state, use the netstat or ss command to check if the web service is listening to port 80

$ sudo netstat -pnltu | grep 80
OR
$ ss -pnltu | grep 80
Check Network Ports Status

If you are still having problems, consider checking the firewall and unblocking the ports to allow HTTP traffic.

Most of the troubleshooting will happen across these 4 layers. Very little troubleshooting is done in the session, presentation, and application layers. This is because they play a less active role in the functioning of a network. However, let’s quickly have an overview of what happens in those layers.

Layer 5: Session Layer

The session layer opens communication channels referred to as sessions and ensures that they remain open during data transmission. It also closes then once the communication is terminated.

Layer 6: Presentation Layer

Also known as the syntax layer, the presentation layer synthesizes data to be used by the application layer. It spells out how devices should encrypt, encode and compress data with the objective of ensuring it is well received on the other end.

Layer 7: Application Layer

Lastly, we have the application layer which is the closest to the end-users and allows them to interact with the application software. The application layer is rich with protocols such as HTTP, HTTPS, POP3, IMAP, DNS, RDP, SSH, SNMP, and NTP to mention a few.

Become a Linux Foundation Certified IT Associate (LFCA)
Exit mobile version