Squid-Kit-Client einrichten

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen

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)

Testen

Install von w3m
sudo apt install -y w3m
Test
curl https://xinux.net
wget https://xinux.net
w3m  https://xinux.net


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";