• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Shell脚本中获取本机ip地址的3个方法

    方法一:

    复制代码 代码如下:

    /sbin/ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:"

    or

    /sbin/ifconfig|sed -n '/inet addr/s/^[^:]*:\([0-9.]\{7,15\}\) .*/\1/p'


    方法二:

    复制代码 代码如下:

    local_host="`hostname --fqdn`"

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


    方法三:

    复制代码 代码如下:

    local_host="`hostname --fqdn`"

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

    您可能感兴趣的文章:
    • Linux Shell脚本中获取本机ip地址方法
    上一篇:Shell脚本实现IP地址合法性判断
    下一篇:Shell脚本获取本地网卡IP、mac地址、子网掩码、dns IP、外网IP
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Shell脚本中获取本机ip地址的3个方法 Shell,脚本,中,获取,本机,