Detailed explanation of nmcli usage in CentOS8

Detailed explanation of nmcli usage in CentOS8

Common nmcli commands based on RHEL8/CentOS8

# View IP (similar to ifconfig, ip addr)
nmcli
# Create a connection, configure a static IP (equivalent to configuring ifcfg, where BOOTPROTO=none, and start it with ifup)
nmcli c add type ethernet con-name ethX ifname ethX ipv4.addr 192.168.1.100/24 ​​ipv4.gateway 192.168.1.1 ipv4.method manual
# Create a connection and configure a dynamic IP (equivalent to configuring ifcfg, where BOOTPROTO=dhcp and ifup is used to start the connection)
nmcli c add type ethernet con-name ethX ifname ethX ipv4.method auto
# Modify ip (non-interactive)
nmcli c modify ethX ipv4.addr '192.168.1.200/24'
nmcli c up ethX
# Modify ip (interactive)
nmcli c edit ethX
nmcli> goto ipv4.addresses
nmcli ipv4.addresses> change
Edit 'addresses' value: 192.168.1.200/24
Do you also want to set 'ipv4.method' to 'manual'? [yes]: yes
nmcli ipv4> save
nmcli ipv4> activate
nmcli ipv4> quit
# Enable connection (equivalent to ifup)
nmcli c up ethX
# Stop connection (equivalent to ifdown)
nmcli c down
# Delete connection (similar to ifdown and delete ifcfg)
nmcli c delete ethX
# View the connection list nmcli c show
# View connection details nmcli c show ethX
# Reload all ifcfg or route to connection (will not take effect immediately)
nmcli c reload
# Reload the specified ifcfg or route to connection (will not take effect immediately)
nmcli c load /etc/sysconfig/network-scripts/ifcfg-ethX
nmcli c load /etc/sysconfig/network-scripts/route-ethX
# Connection takes effect immediately. There are three methods: nmcli c up ethX
nmcli d reapply ethX
nmcli d connect ethX
# View the device list nmcli d
# View all device detailed information nmcli d show
# View detailed information about the specified device nmcli d show ethX
# Activate the network card nmcli d connect ethX
# Disable wireless network (NM enables wireless network by default)
nmcli r all off
# Check the NM management status nmcli n
# Enable NM management nmcli n on
# Disable NM management (execute with caution)
nmcli n off
#Monitoring events nmcli m
# View the status of NM itself nmcli
# Check whether NM is available online nm-online

The ifcfg mentioned above refers to /etc/sysconfig/network-scripts/ifcfg-ethX and /etc/sysconfig/network-scripts/route-ethX

Summarize

The above is the introduction of nmcli usage in CentOS8 by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • CentOS7 uses yum to install mysql 8.0.12
  • When installing jdk1.8 on centos, there is no /lib/ld-linux.so.2: Cause analysis of this file
  • Detailed steps for installing and configuring MySQL 8.0 on CentOS
  • Detailed steps to install and configure k8s cluster in centos 7
  • Centos7.3 jre1.8 installation and configuration tutorial
  • Solution to E_INVALIDARG (0x80070057) when installing Centos6.8 in VirtualBox

<<:  The whole process of implementing the summary pop-up window with Vue+Element UI

>>:  Detailed graphic description of the database installation process of MySQL version 5.7.24

Recommend

JS implements circular progress bar drag and slide

This article example shares the specific code of ...

How to call the browser sharing function in Vue

Preface Vue (pronounced /vjuː/, similar to view) ...

Specific use of MySQL global locks and table-level locks

Table of contents Preface Global Lock Table lock ...

How to modify the mysql table partitioning program

How to modify the mysql table partitioning progra...

Detailed explanation of nginx upstream configuration and function

Configuration Example upstream backend { server b...

MySQL 5.7 cluster configuration steps

Table of contents 1. Modify the my.cnf file of se...

Detailed explanation of data types in JavaScript basics

Table of contents 1. Data Type 1.1 Why do we need...

How to configure MGR single master and multiple slaves in MySQL 8.0.15

1. Introduction MySQL Group Replication (MGR for ...

Docker installation of MySQL (8 and 5.7)

This article will introduce how to use Docker to ...

vue.js Router nested routes

Preface: Sometimes in a route, the main part is t...

Example of implementing grouping and deduplication in MySQL table join query

Table of contents Business Logic Data table struc...

Various ways to achieve the hollowing effect of CSS3 mask layer

This article introduces 4 methods to achieve mask...