Tag: 代理

  • Centos/AS4U8系统使用代理上网 yum的代理设置

    Centos/AS4U8系统使用代理上网 yum的代理设置

    1.打开/etc/yum.conf 配置文件进行编辑 在后面添加以下内容(ip号+端口后无认证连接) proxy=http://192.168.5.100:8086 如果需要认证连接则输入以下内容 proxy=http://192.168.5.100:8086 proxy_username=代理服务器用户名 proxy_password=代理服务器密码 那怎么设置全局代理上网呢? 以上只是针对某些软件代理而已。 打开etc/skel/.bash_profile进行编辑 http_proxy=http://192.168.5.100:8080 https_proxy=http://192.168.5.100:8080 export http_proxy https_proxy 执行source etc/skel/.bash_profile马上更新 执行wget http://www.baidu.com执行测试

  • yum 设置代理

    yum 设置代理

    如果只是暂时使用代理,在命令行输入下面一条命令: export http_proxy=”http://192.168.1.1:61500″ export https_proxy=”http://192.168.1.1:61500″ 对于长久使用代理的情况: yum里面可以单独设置代理 就是yum源的参数加proxy=“http://ip:PORT” 即在/etc/yum.conf中加入下面几句. proxy=http://192.168.1.1:61500 proxy_username=username proxy_password=password 另外:  /root/.bashrc中加入:  export http_proxy=”http://username:password@192.168.1.1:61500″ 如果是通过ip或电脑的网卡地址认证,可忽略所有username 和 password . 注:停止使用代理的时候,要把改过的文件改成原样.尤其是如果使用了export http_proxy=”http://192.168.1.1:61500″命令, 要在命令行输入: unset http_proxy ,去除环境变量. 因为export http_proxy=”http://192.168.1.1:61500″这条命令的实质是把export后面的设置写进环境设置文件中. 输入env 可以看所有的环境变量设置. env >env.txt 可以把环境变量输出到env.txt中,然后打开看也可以. unset 变量 可以取消曾经设过的环境变量.