CentOS 7网卡配置-nmcli

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7网卡配置-nmcli相关的知识,希望对你有一定的参考价值。

1.常用查看命令

[[email protected] ~]# nmcli device status
[[email protected] ~]# nmcli connection show
[[email protected] ~]# nmcli device connect ens32
[[email protected] ~]# nmcli device disconnect ens32
[[email protected] ~]# nmcli connection up ens32
[[email protected] ~]# nmcli connection down ens32

2.使用nmcli配置网络


#创建名为new1的新连接
[[email protected] ~]# nmcli connection add con-name new1 ifname ens32 type ethernet
#配置new1的IP地址模式为静态及相应的IP
[[email protected] ~]# nmcli connection modify new1 ipv4.method manual ipv4.addresses192.168.1.1/24 ipv4.gateway 192.168.1.254
#设置连接自动启动
[[email protected] ~]# nmcli connection modify new1 connection.autoconnect yes
#设置为动态获取IP地址
[[email protected] ~]# nmcli connection modify new1 ipv4.method auto
#使配置文件生效(两者都可以)
[[email protected] ~]# systemctl restart network
[[email protected] ~]# nmcli connection reload

3.删除new1连接

[[email protected] ~]# nmcli connection delete new1


本文出自 “lullaby” 博客,请务必保留此出处http://lullaby.blog.51cto.com/10815696/1949060

以上是关于CentOS 7网卡配置-nmcli的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7 使用nmcli单网卡配置连续IP段

CentOS 7.4 ifconfig, ip/ss, nmcli, nmtui, 配置文件 修改ip信息用法

Linux中使用nmcli配置网络

CentOs7中的网卡配置工具

Linux使用nmcli命令修ip及命令参数和网卡配置文件对应关系

nmcli网卡绑定与teaming配置