Linux ifconfig 命令
ifconfig命令用来配置或查看网卡接口,常见用法如下: [root@localhost ~]$ yum install -y net-tools # 安装ifconfig命令 [root@localhost ~]$ ifconfig # 查看所有网卡的信息(不包括down状态的网卡) [root@localhost ~]$ ifconfig -a # 查看所有网卡的信息(包括down状态的网卡) [root@localhost ~]$ ifconfig eth0 # 查看指定网卡的信息 [root@localhost ~]$ ifconfig eth0 up # 启用指定的网卡,等同于:ifup eth0 [root@localhost ~]$ ifconfig eth0 down # 关闭指定的网卡,等同于:ifdown eth0 [root@localhost ~]$ ifconfig eth0 reload # 重启指定的网卡 [root@localhost ~]$ ifconfig eth0 arp # 开启网卡的ARP协议 [root@localhost ~]$ ifconfig eth0 -arp # 关闭网卡的ARP协议 [root@localhost ~]$ ifconfig eth0 192.168.100.100 # 设置/修改网卡的IP地址(临时生效)