您的当前位置:首页正文

linux 获取本地ip地址

2024-11-26 来源:个人技术集锦

1.ifconfig命令

local_ip(){
	local OUTIF=`/sbin/route -n | tail -1  | sed -e 's/.* \([^ ]*$\)/\1/'`
	local IP="`/sbin/ifconfig | grep -A1 ${OUTIF} | grep inet | awk '{print $2}' | sed 's/addr://g'`"
}
显示全文