安装RPM:
yum install net-tools
ifconfig命令是获取网络配置的详细信息,在基于Linux的系统中非常有用。大多数时候,我在安装Linux操作系统的旧版本,ifconfig命令包在安装操作系统的过程中会默认安装,但是当我最近安装了CentOS 7操作系统,在操作系统中ifconfig命令没有默认安装。
安装软件包ifconfig命令
ifconfig命令来自网络的工具rpm软件包。使用下面的命令在默认库提供安装该软件包。
# yum install net-tools
用ifconfig获取网络接口信息
现在使用ifconfig命令来检查网络配置的详细信息。以下命令将显示详细信息系统中的所有接口
[root@youcl ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:AC:2D:45
inet addr:192.168.10.100 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:feae:2545/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:877052 errors:0 dropped:0 overruns:0 frame:0
TX packets:840432 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1269001025 (1.1 GiB) TX bytes:61342574 (58.5 MiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
使用下面的命令来显示系统eth0设备的详细信息
# ifconfig eth0
用ifconfig获得所有接口的详细信息,使用下面的命令。
# ifconfig -a