Squid-Kit-Client einrichten: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 1: | Zeile 1: | ||
| − | ===Firefox=== | + | i===Firefox=== |
*Starten des Firefox | *Starten des Firefox | ||
*Burgermenu | *Burgermenu | ||
| Zeile 14: | Zeile 14: | ||
=== Temporär (aktuelle Session) === | === Temporär (aktuelle Session) === | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
| − | export http_proxy="http://proxy. | + | export http_proxy="http://proxy.it2XX.int:3128" |
| − | export https_proxy="http://proxy. | + | export https_proxy="http://proxy.it2XX.int:3128" |
</syntaxhighlight> | </syntaxhighlight> | ||
| Zeile 21: | Zeile 21: | ||
In <code>~/.bashrc</code> eintragen: | In <code>~/.bashrc</code> eintragen: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
| − | export http_proxy="http://proxy. | + | export http_proxy="http://proxy.it2XX.int:3128" |
| − | export https_proxy="http://proxy. | + | export https_proxy="http://proxy.it2XX.int:3128" |
</syntaxhighlight> | </syntaxhighlight> | ||
Danach: | Danach: | ||
| Zeile 32: | Zeile 32: | ||
In <code>/etc/environment</code>: | In <code>/etc/environment</code>: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
| − | http_proxy=http://proxy. | + | http_proxy=http://proxy.it2XX.int:3128 |
| − | https_proxy=http://proxy. | + | https_proxy=http://proxy.it2XX.int:3128 |
</syntaxhighlight> | </syntaxhighlight> | ||
| Zeile 39: | Zeile 39: | ||
In <code>/etc/apt/apt.conf.d/proxy.conf</code>: | In <code>/etc/apt/apt.conf.d/proxy.conf</code>: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
| − | Acquire::http::Proxy "http://proxy. | + | Acquire::http::Proxy "http://proxy.it2XX.int:3128"; |
| − | Acquire::https::Proxy "http://proxy. | + | Acquire::https::Proxy "http://proxy.it2XX.int:3128"; |
</syntaxhighlight> | </syntaxhighlight> | ||
Version vom 23. April 2026, 09:42 Uhr
i===Firefox===
- Starten des Firefox
- Burgermenu
- Settings
- Find in Settings
Proxy
- Network Settings
- Connection Settings
- Manual proxy configuration
- Connection Settings
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.it2XX.int:3128"
export https_proxy="http://proxy.it2XX.int:3128"
Dauerhaft (User)
In ~/.bashrc eintragen:
export http_proxy="http://proxy.it2XX.int:3128"
export https_proxy="http://proxy.it2XX.int:3128"
Danach:
source ~/.bashrc
Systemweit
In /etc/environment:
http_proxy=http://proxy.it2XX.int:3128
https_proxy=http://proxy.it2XX.int:3128
APT
In /etc/apt/apt.conf.d/proxy.conf:
Acquire::http::Proxy "http://proxy.it2XX.int:3128";
Acquire::https::Proxy "http://proxy.it2XX.int:3128";