Difference between revisions of "Configuring proxy for apt in debian"
From Notes_Wiki
| m | m | ||
| Line 1: | Line 1: | ||
| [[Main Page|Home]] > [[Debian]] > [[Configuring proxy for apt in debian]] | |||
| To configure proxy for apt in debian use following steps: | To configure proxy for apt in debian use following steps: | ||
| Line 34: | Line 33: | ||
| [[Main Page|Home]] > [[Debian]] > [[Configuring proxy for apt in debian]] | |||
Latest revision as of 06:52, 31 March 2022
Home > Debian > Configuring proxy for apt in debian
To configure proxy for apt in debian use following steps:
- Edit file '/etc/apt/apt.conf.d/70debconf'
- 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>";
- }
- }
 
 
 
- 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

