问题描述
从Centos7升级到Rocky9后, 发现网卡eth0的IP不正确。通过nmcli
查看网卡连接,找不到name为eth0的连接,只显示’Wired connection 1’
查看/etc/NetworkManager/system-connections/
,发现找不到网卡配置文件。
原因分析
centos7使用的网卡配置文件是ifcfg-files(/etc/sysconfig/network-scripts/ifcfg-XXX
),而RHEL9使用的是keyfiles(/etc/NetworkManager/system-connections/XXX.nmconnection
)。
升级到Rocky 9后,需要把eth0网卡重新配置一下。
解决方法
使用nmcli,先删除’Wired connection 1’这个连接,再为eth0网卡生成新的连接,方法如下:
1 | # 删除 Wired connection 1 连接 |
参考
https://www.redhat.com/en/blog/rhel-9-networking-say-goodbye-ifcfg-files-and-hello-keyfiles