linux

ifconfig如何查看网络接口

小樊
43
2025-07-14 00:52:27
栏目: 编程语言

ifconfig 是一个用于配置和显示网络接口信息的命令行工具。要使用 ifconfig 查看网络接口,请按照以下步骤操作:

  1. 打开终端(Terminal)或命令提示符(Command Prompt)。

  2. 输入 ifconfig 命令,然后按 Enter 键。这将显示系统中所有活动的网络接口及其相关信息,如 IP 地址、子网掩码、广播地址等。

示例输出:

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 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 890  bytes 78901 (77.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 890  bytes 78901 (77.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

在这个示例中,eth0lo 是两个网络接口。eth0 是一个以太网接口,具有 IP 地址、子网掩码和广播地址等信息。lo 是一个本地回环接口,用于在本地计算机上进行网络测试。

请注意,ifconfig 命令在某些系统(如 macOS 和较新版本的 Linux 发行版)上可能已被弃用。在这些系统上,可以使用 ip addrip a 命令代替 ifconfig

0
看了该问题的人还看了