ifconfig
是一個用于配置和顯示網絡接口信息的命令行工具。要使用 ifconfig
查看網絡接口狀態,請按照以下步驟操作:
打開終端(Terminal)。
輸入 ifconfig
命令,然后按 Enter 鍵。這將顯示系統中所有活動網絡接口的詳細信息。輸出示例:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.2 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 1003456 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
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 12345 bytes 1234567 (1.1 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 12345 bytes 1234567 (1.1 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
在這個示例中,您可以看到兩個網絡接口:eth0
和 lo
。eth0
是一個以太網接口,lo
是一個本地回環接口。
要查看特定網絡接口的狀態,您可以使用 ifconfig
命令后跟接口名稱,例如:
ifconfig eth0
這將僅顯示 eth0
接口的詳細信息。
請注意,ifconfig
命令在某些系統上可能已被棄用,取而代之的是 ip
命令。在這種情況下,您可以使用 ip addr
或 ip a
命令查看網絡接口狀態。