shell脚本 列出所有网卡的ip地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本 列出所有网卡的ip地址相关的知识,希望对你有一定的参考价值。

#!/bin/bash
for i in `ifconfig | grep -o ^[a-z0-9]*`
do
ifconfig $i|sed -n 2p|awk ‘{ print $2 }‘|tr -d ‘addr:‘
done

执行结果按行显示所有网卡的ip

 

ifconfig | grep -o ^[a-z0-9]* 命令列出所有的网卡接口

ifconfig $i|sed -n 2p|awk ‘{ print $2 }‘|tr -d ‘addr:‘  命令 列出ip

以上是关于shell脚本 列出所有网卡的ip地址的主要内容,如果未能解决你的问题,请参考以下文章

添加网卡子接口ip地址shell脚本

shell脚本:不登陆KVM虚拟机,修改虚拟机网卡IP地址

shell 脚本创建虚拟机 并配置网卡ip地址(两个脚本)

局域网内一键唤醒所有的支持网卡启动的机器的shell脚本

Py获取本机指定网卡的ip地址

Linux网络管理