Squid-Kit-Client einrichten: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „*Starten des Firefox *Burgermenu *Settings *Find in Settings Proxy *Network Settings **Connection Settings ***Manual proxy configuration HTTP Proxy: proxy.it…“)
 
Zeile 1: Zeile 1:
 +
===Firefox===
 
*Starten des Firefox
 
*Starten des Firefox
 
*Burgermenu
 
*Burgermenu
Zeile 9: Zeile 10:
 
  HTTP Proxy: proxy.it2XX.int      Port: 3128
 
  HTTP Proxy: proxy.it2XX.int      Port: 3128
 
  HTTPS Proxy: proxy.it2XX.int      Port: 3128
 
  HTTPS Proxy: proxy.it2XX.int      Port: 3128
 +
== Proxy-Einstellungen (Konsole) ==
 +
 +
=== Temporär (aktuelle Session) ===
 +
<syntaxhighlight lang="bash">
 +
export http_proxy="http://proxy.example.com:3128"
 +
export https_proxy="http://proxy.example.com:3128"
 +
</syntaxhighlight>
 +
 +
=== Dauerhaft (User) ===
 +
In <code>~/.bashrc</code> eintragen:
 +
<syntaxhighlight lang="bash">
 +
export http_proxy="http://proxy.example.com:3128"
 +
export https_proxy="http://proxy.example.com:3128"
 +
</syntaxhighlight>
 +
Danach:
 +
<syntaxhighlight lang="bash">
 +
source ~/.bashrc
 +
</syntaxhighlight>
 +
 +
=== Systemweit ===
 +
In <code>/etc/environment</code>:
 +
<syntaxhighlight lang="bash">
 +
http_proxy=http://proxy.example.com:3128
 +
https_proxy=http://proxy.example.com:3128
 +
</syntaxhighlight>
 +
 +
=== APT ===
 +
In <code>/etc/apt/apt.conf.d/proxy.conf</code>:
 +
<syntaxhighlight lang="bash">
 +
Acquire::http::Proxy "http://proxy.example.com:3128";
 +
Acquire::https::Proxy "http://proxy.example.com:3128";
 +
</syntaxhighlight>

Version vom 23. April 2026, 09:40 Uhr

Firefox

  • Starten des Firefox
  • Burgermenu
  • Settings
  • Find in Settings
Proxy
  • Network Settings
    • Connection Settings
      • Manual proxy configuration
HTTP Proxy: proxy.it2XX.int       Port: 3128
HTTPS Proxy: proxy.it2XX.int       Port: 3128

Proxy-Einstellungen (Konsole)

Temporär (aktuelle Session)

export http_proxy="http://proxy.example.com:3128"
export https_proxy="http://proxy.example.com:3128"

Dauerhaft (User)

In ~/.bashrc eintragen:

export http_proxy="http://proxy.example.com:3128"
export https_proxy="http://proxy.example.com:3128"

Danach:

source ~/.bashrc

Systemweit

In /etc/environment:

http_proxy=http://proxy.example.com:3128
https_proxy=http://proxy.example.com:3128

APT

In /etc/apt/apt.conf.d/proxy.conf:

Acquire::http::Proxy "http://proxy.example.com:3128";
Acquire::https::Proxy "http://proxy.example.com:3128";