CentOS9静态IP设置
1.使用su root切换到root用户。
2.使用下面命令打开配置文件并修改内容:
vim /etc/NetworkManager/system-connections/ens33.nmconnection
修改后的文件内容如下:
[connection] id=ens33 uuid=3fc0f0ee-4c41-34ec-a04c-ff3d81b8cc85 type=ethernet autoconnect-priority=-999 interface-name=ens33 timestamp=1715716037 [ethernet] [ipv4] method=manual address1=192.168.227.100/24,192.168.227.2 dns=114.114.114.114;8.8.8.8 [ipv6] addr-gen-mode=eui64 method=auto [proxy]
保存后退出。
3.重启网卡,代码如下:
nmcli c reload # 重新加载配置文件 nmcli c up ens33 # 重启ens33网卡