Configuring proxy for apt in debian

From Notes_Wiki

Home > Debian > Configuring proxy for apt in debian

To configure proxy for apt in debian use following steps:

  1. Edit file '/etc/apt/apt.conf.d/70debconf'
  2. Append lines
    Acquire::http::Proxy "http://proxy.virtual-labs.ac.in:8080";
    Acquire::ftp::Proxy "http://proxy.virtual-labs.ac.in:8080";
    If proxy requires authentication then username and password can be specified using:
    Acquire::ftp
    {
    Proxy "ftp://proxy:2121/";
    ProxyLogin
    {
    "USER <username>";
    "PASS <password>";
    }
    }
  3. Other option to specify authentication is:
    Acquire::http::Proxy "http://user:pass@proxy_host:port";
    Acquire::https::Proxy "http://user:pass@proxy_host:port";
    Acquire::ftp::Proxy "http://user:pass@proxy_host:port";


Steps have been learned from http://wiki.debian.org/AptConf


Home > Debian > Configuring proxy for apt in debian