문서화되지 않은 설정이 Acquire::http::ProxyAutoDetect
있습니다. 이 설정은 바이너리의 전체 경로를 포함해야하며 인수를 가질 수 없습니다. 이 명령은 사용할 프록시를 출력해야합니다 (예 :) http://10.0.0.1:8000
.
위의 정보가 주어지면 프록시를 설정하기 전에 시도하는 스크립트를 만들 수 있습니다. 프록시를 사용할 수 없으면 직접 연결을 사용해야합니다.
아래는 시도 등의 프록시 검색 스크립트 http://10.0.0.1:8000/
및 http://10.0.0.2:8000
프록시.
코드를 넣으십시오 /etc/apt/detect-http-proxy
:
#!/bin/bash
# detect-http-proxy - Returns a HTTP proxy which is available for use
# Author: Lekensteyn <lekensteyn@gmail.com>
# Supported since APT 0.7.25.3ubuntu1 (Lucid) and 0.7.26~exp1 (Debian Squeeze)
# Unsupported: Ubuntu Karmic and before, Debian Lenny and before
# Put this file in /etc/apt/detect-http-proxy and create and add the below
# configuration in /etc/apt/apt.conf.d/30detectproxy
# Acquire::http::ProxyAutoDetect "/etc/apt/detect-http-proxy";
# APT calls this script for each host that should be connected to. Therefore
# you may see the proxy messages multiple times (LP 814130). If you find this
# annoying and wish to disable these messages, set show_proxy_messages to 0
show_proxy_messages=1
# on or more proxies can be specified. Note that each will introduce a routing
# delay and therefore its recommended to put the proxy which is most likely to
# be available on the top. If no proxy is available, a direct connection will
# be used
try_proxies=(
10.0.0.1:8000
10.0.0.2:8000
)
print_msg() {
# \x0d clears the line so [Working] is hidden
[ "$show_proxy_messages" = 1 ] && printf '\x0d%s\n' "$1" >&2
}
for proxy in "${try_proxies[@]}"; do
# if the host machine / proxy is reachable...
if nc -z ${proxy/:/ }; then
proxy=http://$proxy
print_msg "Proxy that will be used: $proxy"
echo "$proxy"
exit
fi
done
print_msg "No proxy will be used"
# Workaround for Launchpad bug 654393 so it works with Debian Squeeze (<0.8.11)
echo DIRECT
이제 APT는 위의 프록시 감지 스크립트를 사용하도록 구성되어야하므로 다음 코드를 입력하십시오 /etc/apt/apt.conf.d/30detectproxy
.
# Fail immediately if a file could not be retrieved. Comment if you have a bad
# Internet connection
Acquire::Retries 0;
# undocumented feature which was found in the source. It should be an absolute
# path to the program, no arguments are allowed. stdout contains the proxy
# server, stderr is shown (in stderr) but ignored by APT
Acquire::http::ProxyAutoDetect "/etc/apt/detect-http-proxy";
또한 호스트에 근접하지 않도록 다음 코드를 파일에 추가했습니다.
# Override the default proxy, DIRECT causes a direct connection to be used
Acquire::http::Proxy {
deb.opera.com DIRECT;
dl.google.com DIRECT;
};
기본적으로 스크립트는 프록시 사용 여부를 출력합니다. 이를 비활성화하려면 편집 /etc/apt/detect-http-proxy
하고로 변경 show_proxy_messages=1
하십시오 show_proxy_messages=0
.