nmcli命令
可以参考这个:https://mp.weixin.qq.com/s/y64vMJqfbtDGXcTDz6R-mQ
<font color=red>nmcli可以自动补全,还是比较容易的</font>
只敲nmcli显示所有网卡信息:
[[email protected] ~]# nmcli
ens33: connected to ens33
"Intel 82545EM"
ethernet (e1000), 00:0C:29:D3:DD:51, hw, mtu 1500
ip4 default
inet4 192.168.38.123/24
route4 192.168.38.0/24
route4 0.0.0.0/0
route4 172.18.0.0/16
inet6 fe80::20c:29ff:fed3:dd51/64
route6 ff00::/8
route6 fe80::/64
ens37: connected to Wired connection 1
"Intel 82545EM"
ethernet (e1000), 00:0C:29:D3:DD:5B, hw, mtu 1500
inet4 192.168.38.142/24
route4 0.0.0.0/0
route4 192.168.38.0/24
inet6 fe80::a439:f7bd:b0c0:84be/64
route6 fe80::/64
route6 ff00::/8
nmcli一级选项
[[email protected] ~]# nmcli
agent device help networking
connection general monitor radio
查看所有网络接口信息
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
Wired connection 1 97f5b522-19ca-3a36-9ee2-7ad076028521 ethernet ens37
查看指定接口信息
[[email protected] ~]# nmcli connection show ens33
connection.id: ens33
connection.uuid: c96bc909-188e-ec64-3a96-6a90982b08ad
connection.stable-id: --
connection.type: 802-3-ethernet
connection.interface-name: ens33
connection.autoconnect: yes
connection.autoconnect-priority: 0
[[email protected] ~]# nmcli device show ens33
GENERAL.DEVICE: ens33
GENERAL.TYPE: ethernet
GENERAL.HWADDR: 00:0C:29:D3:DD:51
GENERAL.MTU: 1500
GENERAL.STATE: 100 (connected)
GENERAL.CONNECTION: ens33
显示所有活动链接
[[email protected] ~]# nmcli connection show --active
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
Wired connection 1 97f5b522-19ca-3a36-9ee2-7ad076028521 ethernet ens37
删除一个网卡连接
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
Wired connection 1 97f5b522-19ca-3a36-9ee2-7ad076028521 ethernet ens37
#删除
[[email protected] ~]# nmcli connection delete Wired\ connection\ 1
Connection ‘Wired connection 1‘ (97f5b522-19ca-3a36-9ee2-7ad076028521) successfully deleted.
#查看
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
手动给ens37配个IP,这个是永久的,会生成配置文件
# 查看网卡名
[[email protected] ~]# ip addr show ens37
4: ens37: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0c:29:d3:dd:5b brd ff:ff:ff:ff:ff:ff
#开始表演
# 网卡类型为ethernet ifname为网络接口名字ens37,ip,网关,BOOTPROTO为自动
[[email protected] ~]# nmcli connection add type ethernet ifname ens37 ipv4.addresses 192.168.38.
142/24 ipv4.gateway 192.168.38.2 ipv4.method manual
Connection ‘ethernet-ens37‘ (5397a06b-81d2-47ce-a06f-0c76af02c5b4) successfully added.
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
ethernet-ens37 5397a06b-81d2-47ce-a06f-0c76af02c5b4 ethernet ens37
# 查看生成的配置文件
[[email protected] ~]# cat /etc/sysconfig/network-scripts/ifcfg-ethernet-ens37
修改IP或某些网络参数
#原来的样子
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
ethernet-ens37 5397a06b-81d2-47ce-a06f-0c76af02c5b4 ethernet ens37
#修改后的样子
[[email protected] ~]# nmcli connection modify ethernet-ens37 con-name ens37
[[email protected] ~]# nmcli connection show
NAME UUID TYPE DEVICE
ens33 c96bc909-188e-ec64-3a96-6a90982b08ad ethernet ens33
ens37 5397a06b-81d2-47ce-a06f-0c76af02c5b4 ethernet ens37
#添加DNS
[[email protected] ~]# nmcli connection modify ens37 +ipv4.dns 123.123.123.123
增加IP、删除IP
[[email protected] ~]# nmcli connection modify ens37 +ipv4.addresses 192.168.38.161/24
[[email protected] ~]# nmcli connection modify ens37 -ipv4.addresses 192.168.38.161/24
重启网路
[[email protected] ~]# nmcli connection reload
[[email protected] ~]# systemctl restart network
原文地址:https://blog.51cto.com/14012942/2432243
时间: 2024-10-14 19:05:35