码迷,mamicode.com
首页 > 其他好文 > 详细

tinyproxy代理配置

时间:2018-12-10 15:51:34      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:start   根据   exp   用户   服务端   boot   通过   格式   代理   

tinyproxy代理配置

应用场景:

生产机处于内网,无法直接访问外网,程序安装和漏洞修复等操作需要进行联网操作;通过在办公网(可访问外网)上设置代理服务器,生产机通过代理由办公网访问外网

代理服务器配置

  • 系统:ubuntu

  • tinyproxy安装与配置:
    • 安装:apt-get install tinyprox

    • 配置:vim /etc/tinyproxy/tinyproxy.conf:
      参数Port 8888, 对外服务端口
      参数Allow 127.0.0.1,设置允许访问的ip,注释掉可以让任意ip访问

    • 服务启动:service tinyproxy start

内网机器客户端

  • 系统:linux

  • 配置:vim /etc/profile,添加http,https代理设置

#添加Proxy代理信息(其中username和password根据需要填写,若无则不填写) 
http_proxy=http://ip:8888/
https_proxy=http://ip:8888/
export http_proxy 
export https_proxy

若设置了用户名和密码则,链接格式为http://username:password@ip:8888/

  • 执行source /etc/profile
  • 重启系统reboot
  • 测试是否配置成功curl www.baidu.com

tinyproxy代理配置

标签:start   根据   exp   用户   服务端   boot   通过   格式   代理   

原文地址:https://www.cnblogs.com/crazysquirrel/p/10096318.html

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