内网环境使用ansible安装software 需要外网时,如何绑定代理呢?
方法一:
在ansible 的脚本里,yum install 的地方,添加语句:
environment:
https_proxy: "http://hubproxy.sh.cn.ao.ericsson.se:8080"
方法二:
在yum 的配置文件/etc/yum.conf中加入下面几句.
proxy=http://hubproxy.sh.cn.ao.ericsson.se:8080"
方法三:直接在当前vm 机器上执行:
export http_proxy=http://hubproxy.sh.cn.ao.ericsson.se:8080