好好爱自己!

ubuntu proxy变量设置

 

原文:https://www.serverlab.ca/tutorials/linux/administration-linux/how-to-configure-proxy-on-ubuntu-18-04/

----------------------

Single User Temporary Proxy Settings

You may not always want to force Internet traffic through a proxy.  Sometimes you need to override existing settings, and you can do this safely by setting the proxy environment variables from the command line.

The following will set a proxy for HTTP and HTTPS, while preventing local traffic from going through the proxy. Our example proxy server endpoint is my.proxy.server:8080 for HTTP traffic and my.proxy.server:8081 for HTTPS.

  1. Open a Terminal window where you need proxy access.
  2. Set and export the HTTP_PROXY variable.
    export HTTP_PROXY=user:pass@my.proxy.server:8080
  3. Set and export the HTTPS_PROXY variable.
    export HTTPS_PROXY=user:pass@my.proxy.server:8081
  4. Set and export the NO_PROXY variable to prevent local traffic from being sent to the proxy.
    export NO_PROXY=localhost,127.0.0.1,*.my.lan.domain

 

Single User Persistent Proxy Settings

  1. Open your bash profile file into a text editor.
    vi ~/.bash_profile
  2. Add the following lines, modifying them to match your environment.
    export http_proxy=username:password@proxyhost.com:8080
    export https_proxy=username:password@proxyhost.com:8081
    exprot no_proxy=localhost, 127.0.0.1, *.my.lan
  3. Save your settings.
  4. The proxy settings will be applied the next time you start a session, by logging into the server or opening a new Terminal window from a Desktop.
  5. To force apply your new proxy settings in the current Terminal session, execute the source command against your bash profile.
    source ~/.bash_profile

 

All Users

You will need administrative rights to perform this task. All versions of Ubuntu and Debian have a file called /etc/environment. Within this file, we can set global variables and other such things.

Similar to how you set proxy settings for your own local proxy, we’ll be adding the environment variables to this file. The variables will be set when a new user session is created, which is to say when you log in next.

  1. Using an administrator account, open /etc/environment into a text editor.
    sudo vi /etc/environment
  2. Add the following lines, modifying them to fit your environment. Username and password may be omitted, if not required.
    http_proxy="http://<username>:<password>@<hostname>:<port>/"
    https_proxy="http://<username>:<password>@<hostname>:<port>/"
    ftp_proxy="http://<username>:<password>@<hostname>:<port>/"
    no_proxy="<pattern>,<pattern>,...

    For example, if you do not need to enter a username or password, and your proxy server is my.proxyserver.net at port 8080, and you do not want local traffic going through the proxy, you would enter the following:

    http_proxy="http://my.proxyserver.net:8080/"
    https_proxy="http://my.proxyserver.net:8080/"
    ftp_proxy="http://my.proxyserver.net:8080/"
    no_proxy="localhost,127.0.0.1,::1
  3. Save your changes and exit the text editor.
posted @   立志做一个好的程序员  阅读(356)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
历史上的今天:
2018-06-01 【转】Understanding Inversion of Control, Dependency Injection and Service Locator Print
2018-06-01 以有涯随无涯
2017-06-01 Base Conversion In PHP and javascript
2015-06-01 我也谈——时间管理,让生活有序
2015-06-01 我也谈 AngularJS 怎么使用Directive, Service, Controller
2015-06-01 javascript 用call来继承实例属性

不断学习创作,与自己快乐相处

点击右上角即可分享
微信分享提示