ifconfig
是一个用于配置和显示 Linux 内核中网络接口的命令行实用程序。当你在 Linux 终端中运行 ifconfig
命令时,它会显示以下信息:
示例输出:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::a00:27ff:fe4e:66a1 prefixlen 64 scopeid 0x20<link> ether 08:00:27:4e:66:a1 txqueuelen 1000 (Ethernet) RX packets 1003421 bytes 123456789 (117.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 987654 bytes 987654321 (941.5 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
请注意,ifconfig
命令在某些 Linux 发行版中可能已被弃用,建议使用 ip
命令来代替。要使用 ip
命令查看网络接口信息,请运行 ip addr
或 ip a
。