apt 사용할 때 proxy 뒤에 있지만 local mirroring 이 존재할 때, 다음과 같은 설정을 추가하면 된다.
root@client:# vi /etc/apt.conf
Acquire::http::proxy {
192.168.0.1 DIRECT;
"http://192.168.0.254:3128/";
};
Acquire::https::proxy {
192.168.0.1 DIRECT;
"https://192.168.0.254:3128/";
};
Acquire::ftp::proxy {
192.168.0.1 DIRECT;
"ftp://192.168.0.254:3128/";
};
Acquire::socks::proxy {
192.168.0.1 DIRECT;
"socks://192.168.0.254:3128/";
};
192.168.0.1은 local mirroing server 주소 또는 실제 repository address
suffix로 DIRECT 를 추가하면 proxy를 타지 않는다.
192.168.0.254는 proxy address
세미콜론(;) 주의.
'geek_stuff > server & linux' 카테고리의 다른 글
Setup NTP synchronization in WSL2 Ubuntu 20.04 (0) | 2021.08.26 |
---|---|
우분투 preseed 예제 (0) | 2013.10.22 |
ubuntu repository mirroring (0) | 2012.08.06 |
GIT 이전 (0) | 2012.08.02 |
여러 장비에서 자동으로 슬립모드로 들어가는 bash shell script (0) | 2012.07.19 |