ifconfig
命令主要用于配置和显示网络接口的信息,而不是查看路由表。要查看路由表,您应该使用 route
或 ip route
命令。
使用 route
命令查看路由表的示例:
route -n
或者
route --netstat
使用 ip route
命令查看路由表的示例:
ip route show
或者
ip route list
这些命令将显示系统的路由表,包括目标网络、网关、接口等信息。如果您需要查看特定网络接口的信息,可以使用 ifconfig
命令,如下所示:
ifconfig <interface_name>
将 <interface_name>
替换为您要查看的网络接口名称,例如 eth0
或 wlan0
。