成功更改 IP 地址,但“ip addr”和“ifconfig”不显示

成功更改 IP 地址,但“ip addr”和“ifconfig”不显示

我在谷歌上搜索了所有答案。

我已经静态地更改了我的 IP 地址,但没有检测到它。我可以成功 ping 和 SSH 到子网上的任何主机,但ip addr仍然ifconfig显示从 DHCP 获取的旧 IP 地址。

/etc/network/interfaces

auto enp63s0
iface enp63s0 inet static
address 172.16.24.2
netmask 255.255.255.0
gateway 172.16.24.1

出于安全考虑,我不会列出我的旧 IP,但它是 xxx.xxx.xxx.xxx/22,这与 ifconfig 显示的内容相同。

这是由于某种不正确的路径造成的吗?

非常感谢,

答案1

man 5 接口,第一行

ifdown enp63s0
ifup enp63s0

相关内容