在 CentOS 系統中,ifconfig
命令用于顯示和配置網絡接口。要查看網絡配置,只需在終端中輸入以下命令:
ifconfig
這將顯示所有活動網絡接口的詳細信息,包括 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 1003411 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 64 bytes 5760 (5.6 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 64 bytes 5760 (5.6 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
在這個示例中,我們可以看到 eth0
是一個活動的網絡接口,其 IP 地址為 192.168.1.100,子網掩碼為 255.255.255.0,廣播地址為 192.168.1.255。此外,還可以查看接收和發送的數據包數量、字節數等信息。
請注意,ifconfig
命令在某些 CentOS 版本中可能已被棄用,建議使用 ip
命令替代。要使用 ip
命令查看網絡配置,請輸入:
ip addr
這將顯示與 ifconfig
類似的網絡接口信息。