修改rocky IP
方式一:使用nmtui修改IP
使用nmtui修改相关配置后需要重启相应的服务
1 2
| nmcli c reload nmcli c up ens160
|
方式二:修改配置文件
修改配置文件 /etc/NetworkManager/system-connections/ens160.nmconnection
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| [connection] id=ens160 uuid=fe2790ee-f7e6-3ae2-a498-93fb0c0ecde5 type=ethernet autoconnect-priority=-999 interface-name=ens160 timestamp=1728719120
[ethernet]
[ipv4] address1=192.168.27.5/24,192.168.27.2 IP/掩码,网关 dns=8.8.8.8; method=manual
[ipv6] addr-gen-mode=eui64 method=auto
[proxy]
|
修改完成后重启网卡
1 2
| nmcli c reload nmcli c up ens160
|