码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本获得本机ip地址

时间:2015-06-14 00:43:11      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:ip地址

#!/bin/bash
#author:
#date:2015-6-13
#filename:ip.sh
#############################
ifconfig_cmd=`which ifconfig`
$ifconfig_cmd > ifconfig.me
###################################
function obtain_ip_information(){
 if grep -q ‘bond‘ ifconfig.me
 then
  bond_name=`cat ifconfig.me | grep bond | grep -v grep | awk ‘{print $1}‘`
  current_ip=`"${ifconfig_cmd}" "${bond_name}" | grep Bcast | awk ‘{print $2}‘ | awk -F ":" ‘{print $2}‘`
  current_netmask="255.255.255.0"
  current_gateway=`echo ${current_ip} | cut -f 1-3 -d "." | sed ‘s/$/\.254/g‘`
  echo ${current_ip}
  echo ${current_netmask}
  echo ${current_gateway}
 elif grep -q ‘eth‘ ifconfig.me
 then
  current_ip=`${ifconfig_cmd} eth0 | grep Bcast | awk ‘{print $2}‘ | awk -F ":" ‘{print $2}‘`
  current_netmask="255.255.255.0"
  current_gateway=`echo ${current_ip} | cut -f 1-3 -d "." | sed ‘s/$/\.254/g‘`
  echo ${current_ip}
  echo ${current_netmask}
  echo ${current_gateway}
 else
  echo ‘网卡非bond,非eth0,请手工检查‘
  exit 3
 fi
}

obtain_ip_information


shell脚本获得本机ip地址

标签:ip地址

原文地址:http://3971212.blog.51cto.com/3961212/1661602

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!