随笔 - 214  文章 - 0  评论 - 27  阅读 - 71万

linux中nmcli命令使用及网络配置

 

nmcli命令与配置文件对应关系

 主机名:

如果说你没有设置主机名的话,默认是localhost.localdomain

修改配置文件的主机名

# hostnamectl  set-hostname www.djl.cc

查看网卡信息

# nmcli connection

# nmcli con show

 显示具体的网络接口信息

# nmcli connection show eth0

 

显示所有设配状态

# nmcli device status 

修改配置文件执行生效

# systemctl restart network

# nmcli connection reload 

 

显示所有活动连接

# nmcli connection show --active 

删除一个网卡连接

# nmcli connection delete eth0 

添加一个网卡连接

# nmcli connection add type ethernet con-name eth0 ifname eno33554992

 

网络接口的启用与停用:

停用:

# nmcli connection down eth0 

启用:

# nmcli connection up eth0 

给eth0添加一个IP(IPADDR)

# nmcli connection modify eth0 ipv4.addresses 192.168.0.58

给eth0添加一个子网掩码(NETMASK)

# nmcli connection modify eth0 ipv4.addresses 192.168.0.58/24

IP获取方式设置成手动(BOOTPROTO=static/none)

# nmcli connection modify eth0 ipv4.method manual

添加一个ipv4

# nmcli connection modify eth0 +ipv4.addresses 192.168.0.59/24

删除一个ipv4

# nmcli connection modify eth0 -ipv4.addresses 192.168.0.59/24

添加DNS

# nmcli connection modify eth0 ipv4.dns 114.114.114.114

删除DNS

# nmcli connection modify eth0 -ipv4.dns 114.114.114.114

添加一个网关(GATEWAY)

 # nmcli connection modify eth0 ipv4.gateway 192.168.0.2

可一块写入:

nmcli connection modify eth0 ipv4.dns 114.114.114.114 ipv4.gateway 192.168.0.2

 

 

修改网卡名称

删除网卡连接

# nmcli connection delete eno16777736

修改内核参数配置文件

# vi /etc/default/grub 

植入内核

# grub2-mkconfig -o /boot/grub2/grub.cfg 

重启

#reboot

添加网卡

# nmcli connection add type ethernet con-name eth0

posted on   阿小杜  阅读(89007)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
· 为什么 .NET8线程池 容易引发线程饥饿
阅读排行:
· .NET 9.0 使用 Vulkan API 编写跨平台图形应用
· 终于决定:把自己家的能源管理系统开源了!
· [.NET] 使用客户端缓存提高API性能
· AsyncLocal的妙用
· .NetCore依赖注入(DI)之生命周期
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示