docker容器通过ping直接运行获取公网IP

5 篇文章 0 订阅

通过容器获取本机的公网ip  可以用本地IP 多服务注册中心

把命令改居ping  执行可以拿到不同的服务器信息

  public static String getIfconfigIP()
    {
        BufferedReader in = null;
        String outline = "";
        // timeOut window为ms linux 为s
        Runtime r = Runtime.getRuntime(); // 将要执行的ping命令,此命令是windows格式的命令
        String pingCommand = "  curl ifconfig.me  ";// windows系统
        String os = System.getProperty("os.name").toLowerCase();
        if (os.indexOf("linux") >= 0)
        {
            pingCommand = "  curl ifconfig.me ";
        }
        if (os.indexOf("mac") >= 0)
        {
            pingCommand = " curl ifconfig.me ";
        }
        try
        { // 执行命令并获取输出
            System.out.println(pingCommand);
            Process p = r.exec(pingCommand);
            if (p == null)
            {
                return "cmd failed";
            }
            in = new BufferedReader(new InputStreamReader(p.getInputStream())); // 逐行检查输出,计算类似出现=23ms
            // TTL=62字样的次数
            int connectedCount = 0;
            String line = null;

            while ((line = in.readLine()) != null)
            {
                outline += line;
            }
            return outline;
        }
        catch (Exception ex)
        {
            ex.printStackTrace(); // 出现异常则返回假
            return outline;
        }
        finally
        {
            try
            {
                in.close();
            }
            catch (IOException e)
            {
                e.printStackTrace();
            }
        }

    }

 

docker 里面的ip是假的,如何在docker 内运行的程序获取宿主主机的ip地址呢  下面给了我一些提示

p = require('child_process')
      .spawnSync('curl', ['ifconfig.io'])
      .stdout
      .toString()
      .trim()

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值