Rete Tor usata con proxychains

Salve a tutti, è da poco che utilizzo il sistema operativo Linux e come prima distribuzione ho scelto Debian 12 (bookworm).
Scrivo in quanto ho provato a utilizzare la rete tor con proxychains ma mi compare un errore.
Innanzitutto ho controllato di aver installato correttamente Tor e che il servizio fosse attivo attraverso la riga di comando:

$ sudo service tor status

 Active: active (exited) since Sat 2023-09-16 10:39:59 CEST; 30min ago

Dopodiché ho aggiornato il file /etc/proxychains.conf nel seguente modo:

#proxychains.conf  VER 3.1

#HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.

#The option below identifies how the ProxyList is treated.
#only one option should be uncommented at time,
#otherwise the last appearing option will be accepted

dynamic_chain

#Dynamic - Each connection will be done via chained proxies
#all proxies chained in the order as they appear in the list
#at least one proxy must be online to play in chain
#(dead proxies are skipped)
#otherwise EINTR is returned to the app

#strict_chain

#Strict - Each connection will be done via chained proxies
#all proxies chained in the order as they appear in the list
#all proxies must be online to play in chain
#otherwise EINTR is returned to the app

#random_chain

#Random - Each connection will be done via random proxy
#(or proxy chain, see  chain_len) from the list.
#this option is good to test your IDS :)

#Make sense only if random_chain
#chain_len = 2

#Quiet mode (no output from library)
#quiet_mode

#Proxy DNS requests - no leak for DNS data
proxy_dns 

#Some timeouts in milliseconds
tcp_read_time_out 15000
tcp_connect_time_out 8000

#ProxyList format
#type  host  port [user pass]
#(values separated by 'tab' or 'blank')

Examples:

#socks5	192.168.67.78	1080	lamer	secret
#http	192.168.89.3	8080	justu	hidden
#socks4	192.168.1.49	1080
#http	192.168.39.93	8080		

#proxy types: http, socks4, socks5
#( auth types supported: "basic"-http  "user/pass"-socks )

[ProxyList]
#add proxy here ...
#meanwile
#defaults set to "tor"
socks4 	127.0.0.1  9050
socks5	127.0.0.1  9050

Tuttavia quando mando la seguente riga di comando:

$  proxychains wget https://ipinfo.io/ip -qO -

Il terminale inizia a “vomitare” le seguenti righe:

| DNS-request | 2a0d:2a00:2::2 does not exist
dig: parse of /etc/resolv.conf failed

Chiedo se qualcuno sa risolvere questo problema perchè io ho provato a cambiare anche i DNS ma non funziona lo stesso e non capisco dove sto sbagliando.

Auguro una felice giornata a tutti!

Buggy

Cosa c’è scritto in /etc/resolv.conf?

Innanzitutto grazie dell’interesse, è da giorni che cerco una soluzione.

In /etc/resolv.conf vi è scritto:

#Generated by NetworkManager
nameserver 185.228.168.9
nameserver 185.228.169.9
nameserver 2a0d:2a00:1::2
#NOTE: the libc resolver may not support more than 3 nameservers.
#The nameservers listed below may not be recognized.
nameserver 2a0d:2a00:2::2

Se provi a cancellare quale nameserver per prova cosa succede? Perchè “185.228.168.9” è ripetuto due volte?

Questo argomento è stato automaticamente chiuso dopo 180 giorni. Non sono permesse altre risposte.