Squid-Kit-Client einrichten
Version vom 23. April 2026, 09:40 Uhr von Thomas.will (Diskussion | Beiträge)
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.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";