ifconfig -a |grep inet |grep -v '127.0.0.1' |grep -v 'inet6' |awk '{print $2}' |tr -d 'addr:'
ifconfig |grep 'inet addr' |grep -v '127.0.0.1' |cut -d: -f2 |awk '{print $1}'
ifconfig -a |sed -n '/inet add/s/^[^:]*:\([0-9.]\{7,15\}\) .*/\1/p'

local_host="`hostname --fqdn`"
nslookup -sil $local_host 2>/dev/null | grep Address: | sed '1d' | sed 's/Address://g'

local_host="`hostname --fqdn`"
local_ip=`host $local_host 2>/dev/null | awk '{print $NF}'`

2 对 “获取本机IP”的想法;

回复 QQ-52411653 取消回复

您的电子邮箱地址不会被公开。 必填项已用*标注

Captcha Code