- Linux Networking Commands with Examples
- Linux Networking Commands
- Details of Linux Networking Commands
- 1. ifconfig
- Syntax:
- Output:
- Commands:
- Syntax:
- Syntax:
- Syntax:
- Syntax:
- Syntax:
- Commands to get details are:
- Syntax:
- 3.traceroute
- Command:
- Command:
- Command:
- Command:
- 4.tracepath
- Syntax:
- 5.ping
- Syntax:
- Command:
- Syntax:
- Functions:
- 6.netstat
- Syntax:
- Output:
- Syntax:
- Syntax:
- Syntax:
- Syntax:
- Syntax:
- Syntax:
- Command:
- Command:
- Command:
- Syntax:
- Example:
- Output:
- Command:
- Command:
- 9.nslookup
- Syntax:
- Example:
- Output:
- 10.route
- Syntax:
- Output:
- Syntax:
- Syntax:
- Syntax:
- 11.host
- Example:
- Syntax:
- 12.arp
- Syntax:
- Command:
- Command:
- 13.iwconfig
- Syntax:
- Output:
- 14.hostname
- Syntax:
- Output:
- Syntax:
- 15.curl & wget
- Syntax:
- Example:
- Syntax:
- Example:
- Output:
- 16.mtr
- Syntax:
- Example:
- Output:
- Syntax:
- 17.whois
- Syntax:
- Example:
- Output:
- 18.ifplugstatus
- Command:
- Syntax:
- Output:
- 19.iftop
- Command:
- Command:
- Commands:
- Output:
- Command:
- Command:
- 20.tcpdump
- Syntax:
- Output:
- Command:
- Command:
- Command:
- Command:
- a) Save into a file
- Command:
- b) Read from the file
Linux Networking Commands with Examples
Get Trained And Certified
Linux is the kernel of an operating system. It was developed by Linus Torvalds completely from scratch. However, it is a UNIX clone.
It is developed as open-source software that is inherently very robust and secure. Anybody can install Linux and can make changes to it, creating their own Linux version. These versions of Linux are officially called «distros» or «distributions«. Some of the popular Linux versions are:
- Ubuntu Linux
- Red Hat Enterprise Linux
- Linux Mint
- Debian
- Fedora
The unmatched security and stability of the Linux kernel, coupled with the open-source nature, makes it one of the extensively used software.
If you want to enrich your career and become a professional in Linux Networking, then visit Mindmajix — a global online training platform: » Linux Networking Training » This course will help you to achieve excellence in this domain.
Linux is used both in software development and in servers. Most of the devices and embedded systems in the world implement one or the other distribution of Linux.
About 90% of the internet servers across the world are Linux servers. And, about 80% of the smartphones in the world run Linux kernel.
Every system in the world is now connected through a network. Networking amongst systems is essential for the exchange of information.
Networking in computers speaks about networking both within the network and across the internet. A network can be as small and simple as a home network or as complex as a network for a space station.
Networking includes network configuration and troubleshooting. In this module, we are learning about Linux networking commands and network troubleshooting.
Linux Networking Commands
Linux networking commands are used extensively to inspect, analyze, maintain, and troubleshoot the network/s connected to the system.
Let us first know the list of the basic networking commands used in Linux followed by a detailed explanation of each.
- ifconfig
- ip
- traceroute
- tracepath
- ping
- netstat
- ss
- dig
- nslookup
- route
- host
- arp
- iwconfig
- hostname
- curl or wget
- mtr
- whois
- ifplugstatus
- iftop
- tcpdum
Details of Linux Networking Commands
1. ifconfig
Linux ifconfig stands for interface configurator. It is one of the most basic commands used in network inspection.
ifconfig is used to initialize an interface, configure it with an IP address, and enable or disable it. It is also used to display the route and the network interface.
Basic information displayed upon using ifconfig are:
- IP address
- MAC address
- MTU(Maximum Transmission Unit)
- To get all the details using ifconfig
Syntax:
Output:
This picture shows the IP address of 3 networks, Ethernet, local network, and WLAN.
- To get details of specific interface
Using this command, you can get details of a specific interface. This is shown below.
Commands:
- To assign an IP address and Gateway to an interface
This command can also be used to assign an IP address and Gateway to an interface. However, these details will be reset after the system reboot.
Syntax:
- To enable or disable an interface
ifconfig can be used to enable or disable an interface.
To enable an interface
Syntax:
Syntax:
By default, MTU has a size of 1500. This can be however set externally by the user using ifconfig.
Syntax:
XXXX can be replaced by the size of your choice.
This is the latest and updated version of ifconfig command.
Syntax:
This command gives the details of all networks like ifconfig.
This command can also be used to get the details of a specific interface.
Commands to get details are:
Syntax:
3.traceroute
Linux traceroute is one of the most useful commands in networking. It is used to troubleshoot the network. It detects the delay and determines the pathway to your target. It basically helps in the following ways:
- It provides the names and identifies every device on the path.
- It follows the route to the destination
- It determines where the network latency comes from and reports it.
If you don’t have the traceroute service installed in your system, you can install it using the following command:
Example:
Command:
The output provides the following information:
- The specified hostname
- Size of the packets
- The maximum number of hops required.
- The IP address.
- To avoid the reverse DNS lookup, add -n in the command syntax.
Command:
The output indicates the network delays. The asterisks shown in the output indicates a potential problem in reaching that host. They indicate the packet loss during communication to the network.
Generally, the traceroute command sends UDP packets. It can as well send TCP or ICMP packets.
- To specifically send in ICMP, use this,
Command:
To send a variant of TCP, use this,
Command:
4.tracepath
Linux tracepath is similar to traceroute command. It is used to detect network delays. However, it doesn’t require root privileges.
It is installed in Ubuntu by default.
It traces the route to the specified destination and identifies each hop in it. If your network is weak, it recognizes the point where the network is weak.
Syntax:
Example:
Output:
5.ping
Linux ping is one of the most used network troubleshooting commands. It basically checks for the network connectivity between two nodes.
ping stands for Packet INternet Groper.
The ping command sends the ICMP echo request to check the network connectivity.
It keeps executing until it is interrupted.
Use Ctrl+C Key to interrupt the execution.
Syntax:
Example:
Command:
The ping shows a successful connection to google.com
You can also use the IP address to ping directly.
You can limit the number of packets by including «-c» in the ping command.
Syntax:
You can specify the c count and limit the response packets to that.
Functions:
The command is used to measure the average response. If there is no response for the ping command, you can assume one of the following issues with the network:
- There is a physical issue causing network loss.
- The destination address might be dysfunctional or incorrect.
- The ping request is blocked due to a target.
- There might be a problem with the routing table.
Note: The response rate of the ping command will be affected by the connection at your system and also the location of the server you are pinging too. So expect a delay in the response if the connection at your point is weak.
6.netstat
Linux netstat command refers to the network statistics.
It provides statistical figures about different interfaces which include open sockets, routing tables, and connection information.
Syntax:
Output:
Observe the output displaying all the open sockets.
Variations in netstat command
Below are few variations of the netstat command used.
1) To display the programs
Syntax:
This displays the programs associated with the open socket.
2) To get the details of the ports
Syntax:
This gives detailed statistics of all the ports.
3) To get the information of the routing table
Syntax:
This gives information related to the routing table.
Linux ss command is the replacement for netstat command. It is regarded as a much faster and more informative command than netstat.
The faster response of ss is possible as it fetches all the information from within the kernel userspace.
Syntax:
This command gives information about all TCP, UDP, and UNIX socket connections.
You can use -t, -u, -x in the command respectively to show TCP/UDP or UNIX sockets. You can combine each of these with «a» to show the connected and listening sockets.
Syntax:
If you want to see only the listening sockets of TCP/UDP or UNIX sockets, combine it with «l»
Syntax:
- To get a list of all the established sockets of TCP for IPV4,
Command:
- To get a list of all closed TCP sockets,
Command:
- To get a list of all connected ports for a specific IP address:
Command:
Linux dig command stands for Domain Information Groper. This command is used in DNS lookup to query the DNS name server. It is also used to troubleshoot DNS related issues.
It is mainly used to verify DNS mappings, MX Records, host addresses, and all other DNS records for a better understanding of the DNS topography.
This command is an improvised version of nslookup command.
Syntax:
Example:
Output:
dig command outputs the A records by default. If you want to specifically search for MX or NS type, use the syntax below.
Command:
- To get all types of records at once, use the keyword ANY ass below:
Command:
The dig command does the query on the servers listed in /etc/resolv.conf.
9.nslookup
Linux nslookup is also a command used for DNS related queries. It is the older version of dig.
Syntax:
Example:
Output:
As we see in the output above, it displays the record information relating to
10.route
Linux route command displays and manipulates the routing table existing for your system.
A router is basically used to find the best way to send the packets across to a destination.
Syntax:
Output:
The above output displays all the existing routing table entries for the system. It says that if the destination address is within the network range of 10.0.0.0 to 10.0.0.255, then the gateway is *, which 0.0.0.0. This is a special address that indicates a non-existent destination.
The packets which lie outside this network range will be forwarded to the default gateway, which is further routed.
- Displaying numerical IP address
You can use -n in the option in the syntax to display the output incomplete numerical form.
Syntax:
The packets that are not within the range are forwarded to the specific gateway. You can specify the gateway address using the following command.
Syntax:
The kernel maintains all the routing cache information in a table for faster routing. To list the routing cache information, use the following command,
Syntax:
11.host
Linux host command displays the domain name for a given IP address and IP address for a given hostname. It is also used to fetch DNS lookup for DNS related query.
Example:
You can combine the host command with -t, and get DNS resource records like SOA, NS, A, PTR, CNAME, MX, SRV.
Syntax:
12.arp
Linux arp command stands for Address Resolution Protocol. It is used to view and add content to the kernel’s ARP table.
Syntax:
All the systems maintain a table of IP addresses and their corresponding MAC addresses. This table is called the ARP Lookup table. When a destination is requested to connect through IP address, your router will check for the MAC address in this table. If it is cached, the table will not be used.
By default, arp displays the hostnames. You can get the IP addresses, by using :
Command:
You can also delete the entries from the arp table, as shown below.
Command:
13.iwconfig
Linux iwconfig is used to configure the wireless network interface. It is used to set and view the basic WI-FI details like SSID and encryption. To know more about this command, refer to the man page.
Syntax:
Output:
14.hostname
Linux hostname is the simple command used to view and set the hostname of a system.
Syntax:
Output:
Use the syntax below to set the hostname.
Syntax:
The hostname set through this command is not permanent. It will be reset to the name in the hostname file back when the system reboots.
In order to permanently set a hostname, you have to re-write the hostname in the hostname file, present on the server. Once set, you have to reboot the box.
In Ubuntu, /etc/hostname file is used.
In RHEL, /etc/sysconfig/network is used.
15.curl & wget
Linux curl and wget commands are used in downloading files from the internet through CLI. The curl command has to be used with the option «O» to fetch the file, while the wget command is used directly.
Below are the syntax and the example for the two commands.
a) Curl
Syntax:
Example:
b) wget
Syntax:
Example:
Output:
16.mtr
Linux mtr command is a combination of ping and the traceroute command. It continuously displays information regarding the packets sent with the ping time of each hop. It is also used to view the network issues.
Syntax:
Example:
Output:
You can use mtr with –report option. It sends 10 packets to each hop that is found on the way.
Syntax:
17.whois
Linux whois command is used to fetch all the information related to a website. You can get all the information about a website including the registration and the owner information.
Syntax:
Example:
Output:
18.ifplugstatus
Linux ifplugstatus command is used to check if a cable is plugged into the network interface. This command is not directly available on Ubuntu. You can install this using the command below:
Command:
Syntax:
Output:
In the output above, «link beat detected» means that the cable is plugged in.
19.iftop
Linux iftop command is used in traffic monitoring.
Use the following command to download iftop on your system.
Command:
This will give a zip file. To extract it, use the following command,
Command:
You can compile this using,
Commands:
Now, run the tool as a root user,
Output:
You can view the ports using the -P option in command like this,
Command:
You can use the -B command to get the data in bytes, instead of bits (which is shown by default).
Command:
20.tcpdump
Linux tcpdump command is the most used command in network analysis among other Linux network commands. It captures the traffic that is passing through the network interface and displays it.
This kind of access to the packet will be crucial when troubleshooting the network.
Syntax:
Output:
You can also specify the protocol (TCP, UDP, ICMP, and others) in the command like this,
Command:
To specify the port, use the command,
Command:
tcpdump command keeps executing and sending packets unless canceled. Hence you can specify the number of events to be captured to control the continuous execution.
Command:
You can also specify the IP you are capturing from, using the tag src or dst.
Command:
You can save the network traffic captured at an instant, into a file and use it later. This can be done using the command below,
a) Save into a file
Command:
b) Read from the file
Command:
These were the most essential network commands in Linux that are used frequently for network analysis and troubleshooting.