The usage of nmcli command is: 1. Check the interface information; 2. Check the connection information; 3. Start or stop the interface; 4. Create a connection; 5. Modify the IP address; 6. Modify whether the connection is self-starting. ;7. Delete the connection; 8. Configure the dns of the connection.
![What is the usage of nmcli command?](https://img.php.cn/upload/article/202011/02/2020110210193464673.jpg)
The usage of nmcli command is:
#nmcli command is a command after redhat7 or centos7, this command can be completed All configurations on the network card work and can be written to the configuration file to take effect permanently.
![1604283153555295.png What is the usage of nmcli command?](https://img.php.cn/upload/image/336/383/904/1604283153555295.png)
Display parameters
show display detailed information
status display brief information
![1604283158917312.png What is the usage of nmcli command?](https://img.php.cn/upload/image/635/872/180/1604283158917312.png)
##1. View interface information:
![1604283168584542.png What is the usage of nmcli command?](https://img.php.cn/upload/image/858/804/718/1604283168584542.png)
Command options and parameters can be abbreviated
2. View connection information
![1604283175319112.png What is the usage of nmcli command?](https://img.php.cn/upload/image/701/692/106/1604283175319112.png)
3. Start/stop interface
![1604283205262724.png What is the usage of nmcli command?](https://img.php.cn/upload/image/685/216/129/1604283205262724.png)
or
![1604283216772022.png What is the usage of nmcli command?](https://img.php.cn/upload/image/832/251/832/1604283216772022.png)
P.S: It is recommended to use nmcli device disconnect(connect) interface-name
Because this command is used, the connection will not be automatically connected before starting a connection or when an external event occurs
4. Create a connection
Create Dynamically obtain the connection of the IP address, con-name is the name of the created connection, ifname is the physical device, network interface
![1604283240273714.png What is the usage of nmcli command?](https://img.php.cn/upload/image/893/979/775/1604283240273714.png)
Create a static IP address connection
![1604283246235843.png What is the usage of nmcli command?](https://img.php.cn/upload/image/215/801/547/1604283246235843.png)
PS: Creating a connection means creating an ifcfg-${con-name} file in the /etc/sysconfig/network-scripts/ directory. If multiple connections are created, they will be created at the same time. Create multiple files.
5. Modify the IP address
![1604283293628274.png What is the usage of nmcli command?](https://img.php.cn/upload/image/867/867/244/1604283293628274.png)
The modification will not take effect, it requires
![1604283300969528.png What is the usage of nmcli command?](https://img.php.cn/upload/image/703/201/102/1604283300969528.png)
6. Modify whether the connection is self-starting (default self-starting)
![1604283315352704.png What is the usage of nmcli command?](https://img.php.cn/upload/image/121/410/315/1604283315352704.png)
7. Delete the connection
![1604283346899379.png What is the usage of nmcli command?](https://img.php.cn/upload/image/607/882/225/1604283346899379.png)
8. Configure the connection dns
Configure dns for the connection
![1604283352349373.png What is the usage of nmcli command?](https://img.php.cn/upload/image/599/180/534/1604283352349373.png)
Add dns for the connection
## After modifying con, you need Reactivate the connection to take effect
![1604283361817063.png What is the usage of nmcli command?](https://img.php.cn/upload/image/659/195/394/1604283361817063.png)
Related free recommendations:
Programming video course
The above is the detailed content of What is the usage of nmcli command?. For more information, please follow other related articles on the PHP Chinese website!