如何取eth0中的IP地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何取eth0中的IP地址相关的知识,希望对你有一定的参考价值。

以下十多种方法,明白四种即可;

ifconfig eth0 |sed -n ‘2p‘ |sed‘s#^.*addr:##g‘|sed ‘s#  B.*$##g‘

ifconfig|awk -F "[: ]+"‘NR==2{print $4}‘

ifconfig |awk NR==2|sed -r‘s#^.*r:(.*)B.*#\1#g‘

ifconfig |sed -rn ‘2s#^.*r:(.*)B.*#\1#gp‘

ifconfig eth0|grep "inet a"|sed -r ‘s#^.*r:(.*)B.*#\1#g‘

ifconfig eth0|sed -rn ‘/inet a/s#^.*r:(.*)B.*#\1#gp‘

ifconfig eth0|grep ‘inetaddr‘|cut -d ":" -f2|cut -d " " -f1

ifconfig eth0|grep ‘inet addr‘|awk -F ":" ‘{print $2}‘|awk ‘{print $1}‘

ifconfig eth0|grep ‘inet addr‘|awk -F ‘[ :]‘ ‘{print $13}‘

ifconfig eth0|sed -n ‘2p‘|awk-F ‘[ :]+‘ ‘{print $4}‘

ifconfig eth0 |awk -F‘[ :]+‘ ‘NR==2 {print $4}‘

ifconfig eth0 |sed -nr ‘2s#^.*dr:(.*)  B.*$#\1#gp

ifconfig eth0|grep -Po ‘(?<=dr:)[0-9.]+‘

ifconfig eth0|sed -nr ‘2s#^.*addr:(.*) Bca.*$#\1#g‘p

ifconfig eth0|sed -n ‘2p‘|sed ‘s#^.*addr:\(.*\)Bc.*$#\1#g‘

hostname -l

以上是关于如何取eth0中的IP地址的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu中如何手动设置IP ??,,为啥 eth0,它抓不到IP4地址,

没有IP地址的主机如何保持IP层联通

没有IP地址的主机如何保持IP层联通

取ip地址,最简单粗暴的2种方法

如何在linux系统中设置静态ip地址

Linux配置网络参数之IP地址、子网掩码、网关地址,DNS