this post was submitted on 11 Jul 2024
30 points (96.9% liked)

Linux

46777 readers
1886 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

back when I used ubuntu derivatives I used privoxy and edited the config file to route all my traffic through tor.

I just did the same on debian 12.6 and wonder if there's a better alternative.

all 14 comments
sorted by: hot top controversial new old
[–] [email protected] 7 points 1 month ago (1 children)

You point your main active network interface gateway to a tor gateway or proxy.

[–] [email protected] 1 points 1 month ago

You point your main active network interface gateway to a tor gateway or proxy.

Am I doing that editing the privoxy config file with this line?

'forward-socks5t / 127.0.0.1:9050 .'

I now set up tor for firefox manually using https://www.wikihow.com/Use-Tor-with-Firefox. If the edited privoxy cofig file is the right way to go, didn't I just double torify?

[–] [email protected] 6 points 1 month ago

@merompetehla

#Whonix is what you need, unless you find this solution too heavy

[–] [email protected] 5 points 1 month ago
[–] [email protected] 5 points 1 month ago

Install tor (from the official repo) then set up a proxy for SOCKS5 localhost port 9050

[–] [email protected] 4 points 1 month ago

You may want to look into Qubes, it can natively route an entire OS through Tor. Note that routing all your traffic may hurt your anonymity. For example, there what if an app on your machine reaches out to somewhere and reports the serial number of a piece of hardware and it does it through your "anonymous" Tor connection? Virtualizing that hardware can help avoid that. Think through your threat model.

[–] [email protected] 3 points 1 month ago

Someone else mentioned Qubes, but that is also a rather advanced distro for journalists and other users with a high threat model.

If you want to be able to use your computer as normal, but have a session with maximum privacy and route through Tor, Whonix is your best bet.

If you want something that you cannot possibly mess up, even at the cost of less functionality on your computer, TAILS is your best bet.

[–] [email protected] 2 points 1 month ago* (last edited 1 month ago)

If you can, set this up on your router and then specify which devices should route through.

You may also want to use pihole for ad blogging and as your DNS server. and in pihole use your VPN server's DNS such that you don't have DNS leak.

And if the VPN is down, your computer won't work until it comes back up.

Helpful if you run the network at your house

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

I don't use tor that often but as my understanding tor is basically a socks5 proxy, which operates at application layer, so there is no way you can route all your traffic through tor, at least not the ICMP packets.

Some applications are willing to use your proxy settings like http_proxy and https_proxy environment variables, but some of them not, especially for udp based applications (most games). The workaround that i am aware of is to use a rule-based proxy program that supports TUN mode, such as Clash Meta (the link is a fork of clash meta called mihomo, which is the one that i am currently using). Basically it creates a virtual interface and traps all the higher layer traffic into this interface, so it can route them through the configured proxy (tor in your case), even for applications that don't honor your proxy settings at all.

In Clash Meta you can use configurations such as this to route all your layer 5 and 4 traffic through tor, the important part is to enable the tun mode. After that you can simply use command mihomo -f config.yaml to start it.

port: 7890
socks-port: 7891
redir-port: 7892
mode: rule
tun:
  enable: true
  stack: gvisor
  auto-route: true
  auto-redirect: true
  auto-detect-interface: true
proxies:
  -
    name: 'tor'
    type: socks5
    server: localhost
    port: 9050
proxy-groups:
  -
    name: DEFAULT
    type: select
    proxies:
      - 'tor'
rules:
  - MATCH,DEFAULT