• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[SOLVED] tor findet keine "exit circs"

mctwist

Newbie
abend allerseits.
hab nach ner weile endlich tor+privoxy zum laufen bekommen, nunja, mehr oder wehniger.

privoxy läuft problemlos, tor verbindet aber nicht.
hier die meldungen:
-----------------------
diese läuft die ganze zeit:

  • Nov 21 16:30:50.056 [info] circuit_predict_and_launch_new(): Have 0 clean circs (0 internal), need another exit circ.
ab und zu macht er ein paar mal das (jeweils mit verschiedenen servern:

  • Nov 21 16:28:07.353 [info] choose_good_exit_server_general(): Found 259 servers that might support 0/0 pending connections.
    Nov 21 16:28:07.353 [info] choose_good_exit_server_general(): Chose exit server 'whistlersmother'
    Nov 21 16:28:08.115 [info] circuit_send_next_onion_skin(): First hop: finished sending CREATE_FAST cell to 'bitcircle'
    Nov 21 16:28:08.115 [info] connection_read_to_buf(): tls error. breaking (nickname bitcircle, address 216.55.190.121).
    Nov 21 16:28:08.115 [info] connection_close_immediate(): fd 7, type OR, state open, 512 bytes on outbuf.

und ganz selten mal:

  • Nov 21 16:28:35.465 [info] update_networkstatus_client_downloads(): For 5/5 running directory servers, we have 4 live network-status documents. Downloading 1.
    Nov 21 16:28:35.466 [info] circuit_predict_and_launch_new(): Have 0 clean circs (0 internal), need another exit circ.
    Nov 21 16:28:36.469 [info] circuit_predict_and_launch_new(): Have 0 clean circs (0 internal), need another exit circ.

vielleicht weiß ja jemand woran es liegt.
thx mctwist
 
Ich kann dir zwar nix zu der Fehlermeldung sagen, aber bei mir funktioniert es folgendermaßen:

Installiert ist:
  • tor-0.1.1.25-tor.0.suse von http://tor.eff.org/download-unix.html.de
  • privoxy-3.0.3-42 aus dem normalen OpenSUSE Repository
  • Torbutton 1.0.4 (Firefox Plugin) von https://addons.mozilla.org/firefox/2275/

Konfiguration:
1. Im $HOME-Verzeichnis eine Datei ".privoxy" erstellen mit folgendem Inhalt:
Code:
forward-socks4a / localhost:9050 .
(leitet Privoxy Output zu Tor um)

2. Im ~/.kde/Autostart Verzeichnis eine Datei 'privoxyStartup.sh' erstellen mit
Code:
#!/bin/bash
/usr/sbin/privoxy ~/.privoxy
als Inhalt. (startet Privoxy automatisch)

Jetzt lässt sich Tor durch klicken auf die Box rechts unten im Firefox an und ausschalten (für Firefox)!

Genauer ists hier erklärt: http://tor.eff.org/docs/tor-doc-unix.html
 
OP
M

mctwist

Newbie
das problem ist ja nicht das es nicht läuft. privoxy redet mit tor, tor versteht was privoxy will, findet aber keinen weg durchs netz.

hier trotzdem die configs:

tor

  • >cat torrc | grep ^[^#]
    FascistFirewall 1
    ReachableDirAddresses *:80
    ReachableORAddresses *:443
    SocksPort 9050 # what port to open for local application connections
    SocksListenAddress 127.0.0.1 # accept connections only from localhost
und privoxy:


  • > cat config | grep ^[^#]
    confdir /etc/privoxy
    logdir /var/log/privoxy
    actionsfile standard # Internal purpose, recommended
    actionsfile default # Main actions file
    actionsfile user # User customizations
    filterfile default.filter
    trust-info-url http://www.example.com/why_we_block.html
    trust-info-url http://www.example.com/what_we_allow.html
    debug 1 # show each GET/POST/CONNECT request
    debug 4096 # Startup banner and warnings
    debug 8192 # Errors - *we highly recommended enabling this*
    listen-address 127.0.0.1:8118
    toggle 1
    enable-remote-toggle 1
    enable-edit-actions 1
    buffer-limit 4096
    forward-socks4a / 127.0.0.1:9050 .
    log-messages 1
    log-buffer-size 1

...
mfg twist
 
Oben