एक अनिर्धारित सेटिंग है 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
।