Nmcli for controlling network manager

Table of contents

Last Blog Review →
In the last blog we understood, the basic but very useful commands of the networking used in Linux which are used in day to day life for troubleshooting the connectivity issue.
What is Nmcli ?
nmcli is a command line tool for controlling network manager, allowing you to manage network connections, devices and settings directly from terminal.
nmcli commands
Nmcli command to show list of all connection
nmcli connection show
Nmcli command to list of active connection
nmcli connection show --active
Nmcli command to show specific connection
nmcli connection show <connection_name> nmcli connection show "Wifi"
Nmcli command to show device status
nmcli device status
Nmcli command to create new connection
nmcli connection add type <connection_type> con-name <connection_name> ifname <interface_name> <other_options>
<connection_type>
: Type of the connection, such asethernet
,wifi
,vpn
, etc.<connection_name>
: The name you want to give to this connection.<interface_name>
: The network interface (e.g.,eth0
,wlan0
) to which the connection will be associated.<other_options>
: Additional configuration options based on the connection type.
Nmcli command to modify connection to add dns
nmcli connection modify <connection_name> ipv4.dns "<dns_ip>"
Nmcli command to activate new connection
nmcli connection up <connection_name>
Nmcli command to deactivate new connection
nmcli connection down <connection_name>
Nmcli command to start new connection & stop old connection
nmcli connection modify "MyWiFi" connection.autoconnect no nmcli connection modify "MyWiFi" connection.autoconnect yes
Nmcli command to remove existing connection
nmcli con delete <conn-name>
Command to set hostname
hostnamectl set-hostname <new_hostname>
Command to show hostname
hostname
Conclusion →
In this blog we understood, what is Nmcli which is network manager command line tool to delete, create i.e. manage network connection which is easier way to handle the configuration.
Image credit → https://images.app.goo.gl/7a13AGbta8SwMvx3A
Subscribe to my newsletter
Read articles from Mihir Suratwala directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Mihir Suratwala
Mihir Suratwala
Hi, How are you !! Hope you doing good.... I got introduced to Cloud initially. As I went ahead learning what is cloud and how it works, then got to know a field which is DevOps that makes Cloud model more effective. So, as I started working & got good experience on AWS. I have been learning the DevOps tool and technologies on how to use it with the Cloud, which will give me good understanding on how Cloud and DevOps go hand in hand to deploy my applications.