linux ifconfig查不到ip
时间: 2023-02-24 18:10:01 浏览: 2212
解决Linux中ifconfig和addr查看不到ip问题
5星 · 资源好评率100%
如果你在 Linux 系统中使用 ifconfig 命令查询 IP 地址但是没有查到,有以下几种可能的原因:
1. 网络未连接:如果你的网络未连接,ifconfig 命令将不会显示 IP 地址。
2. 使用了错误的网络接口:ifconfig 命令默认显示 eth0 这个网络接口的 IP 地址,如果你使用的是其他接口,请使用 ifconfig <interface-name> 来查询该接口的 IP 地址。
3. IP 地址被隐藏:如果 IP 地址被隐藏,ifconfig 命令也不会显示。
如果你仍然无法查到 IP 地址,可以使用其他命令,如 ip addr show 或 hostname -I 来查询 IP 地址。
阅读全文