Deaktivieren Sie den Proxyserver für ein Apt-Repository

Deaktivieren Sie den Proxyserver für ein Apt-Repository

Ich habe ein lokales Apt-Repository erstellt, aber meine IT-Abteilung speichert den LAN-Verkehr auf dem Proxy-Server. Kann ich das irgendwie umgehen, indem ich die Proxy-Einstellungen für dieses lokale Apt-Repository deaktiviere? In apt.conf oder ähnlich?

Antwort1

Deklarieren Sie in einer /etc/apt/apt.conf.d/99proxyDatei einfach etwa Folgendes:

Acquire::http::Proxy {
    your.local.first.repository DIRECT;
    your.second.first.repository DIRECT;
};

DIRECTweist apt an, eine direkte Verbindung zum Repository zu verwenden.

Antwort2

Das ist nur@Cédric JulienAntwort von mit (Danke und) der zusätzlichen Syntax für die Standardeinstellung auf einen externen Proxy:

Acquire::http::Proxy "http://proxy:8080";
Acquire::http::Proxy {
    in-house.debian.example.com DIRECT;
    no-protocol-colon-or-slashes.example.com DIRECT;
};

Antwort3

Wie schon wieder ein 11 Jahre alter Beitrag, dennoch habe ich ihn gefunden und eine der Funktionen meines Codes bei

https://github.com/hastmu/apt-proxy-detect

besteht eigentlich darin, nicht funktionierende Proxys für einige Repositories, z. B. lokale, zu überspringen.

Genießen.

Auszug aus dem Erkennungsprozess für lokale Repos (blockierte)

[        INFO][   1]: ===--- apt-proxy-detect ---===
[    TEST-URL][  16]: URL:  http://local-repo.fritz.box/local-repo/dists/trunk/InRelease
[        HASH][  24]: HASH: 2bfbb1335aaf9d333a5c9498226eb208 of (http://local-repo.fritz.box)
[       CACHE][  29]: using stored under: /var/lib/apt/lists/auxfiles/.apt-proxy-detect._apt
[       CHECK][  31]: once working proxy: http://192.168.0.27:8000 for http://local-repo.fritz.box/local-repo/dists/trunk/InRelease
# once working proxy failed
[ CHECK-PROXY][  41]: Proxy (http://192.168.0.27:8000) failed with testurl (http://local-repo.fritz.box/local-repo/dists/trunk/InRelease)
# search again
[       AVAHI][  46]: get cache entries for _apt_proxy._tcp
[       CHECK][  91]: Checking found proxy (http://192.168.0.27:8000) with testurl (http://local-repo.fritz.box/local-repo/dists/trunk/InRelease)
[ CHECK-PROXY][ 101]: Proxy (http://192.168.0.27:8000) failed with testurl (http://local-repo.fritz.box/local-repo/dists/trunk/InRelease)
Service[ER][Squid deb proxy on squid-deb-proxy]@http://192.168.0.27:8000 
[       CHECK][ 124]: Checking found proxy (http://192.168.0.27:3142) with testurl (http://local-repo.fritz.box/local-repo/dists/trunk/InRelease)
[ CHECK-PROXY][ 134]: Proxy (http://192.168.0.27:3142) failed with testurl (http://local-repo.fritz.box/local-repo/dists/trunk/InRelease)
Service[ER][apt-cacher-ng proxy on squid-deb-proxy]@http://192.168.0.27:3142 
# none found (as local repos are not allowed on the proxies)
[       PROXY][ 149]: return ::
[       CACHE][ 152]: Store (NONE) in cache file (/var/lib/apt/lists/auxfiles/.apt-proxy-detect._apt)
[       CACHE][ 154]: Update cachefile.
[        INFO][   2]: ===--- apt-proxy-detect ---===

verwandte Informationen