LowEndBox - Cheap VPS, Hosting and Dedicated Server Deals

How to Run a TOR Node on Your VPS

TOR (The Onion Router) is FOSS software to allow onion routing. It is designed to defeat traffic analysis. In this tutorial, we’ll talk about the three kinds of routers you can run to contribute to the project. If you’re merely interested in using TOR, please visit the TOR home page and click “Download Tor Browser”.

What is Traffic Analysis?

Imagine I’m a surveillance agency and I want to gather information on you, so I watch your network traffic. Even if it’s encrypted, I’ll be able to see which web sites you visit. I won’t be able to decrypt your bank password, but I’ll know the name of your bank. I won’t be able to know what you said to your friends, but I might be able to see that you said *something* and build a list of your friends, etc.

How does TOR defeat this?

TOR defeats this by onion routing. Your connections are routed through a mesh of 7,000+ (as of this writing) servers, and the paths chosen change with each browser click you make. This makes it impossible (or at least very difficult) for someone to trace your connection. This is a gross simplification of how TOR works – check out Wikipedia for a fuller overview.

Note that this does not magically make you invisible on the Internet. The purpose of TOR is to enhance individual privacy, not enable a legion of superhackers.

How can you help?

To function, TOR needs three types of nodes:

  • Relay nodes: These are the mesh nodes through which traffic passes. Their function is simply to pass traffic from one node to another.
  • Bridge relays: This are specialized entry nodes that are kept secret (not listed in the public TOR directory), which makes it more difficult for governments to block these entrances.
  • Exit nodes: These are the points where your traffic “pops out” of the network. Your traffic typically enters on a relay node, passes through several, and then exits on an exit node. So if the traffic goes through a server in Kentucky (USA), Toronto (CAN), and Berlin (DE) in that order, Kentucky and Toronto are relay nodes and Berlin is an exit node. If you were sitting in Seattle, you would appear (based on your IP) to be in Berlin.

You can help by running more nodes. Spare and idling LowEndVPSes are excellent for running nodes.

What kind of node should I run?

Relay and bridge nodes are rarely controversial, but exit nodes nearly always cause abuse reports. You must check your provider’s terms. Some providers disallow all TOR nodes, while many more allow only relay and bridge nodes. When in doubt, read your provider’s Acceptable Use Policy and if you have questions, open a ticket. You can find a list of TOR-friendly hosts on the TOR project’s wiki.

In this example I’m running on a BuyVM VPS in their Las Vegas location.  BuyVM is a TOR-friendly provider.  See the TOR section of their AUP for full details.

How do I setup a node?

On Debian 10, it’s as simple as:

apt-get install tor

The real work is in editing /etc/tor/torrc. Let’s walk through the chief options:

You should uncomment one or both of these:

Log notice file /var/log/tor/notices.log
Log debug file /var/log/tor/debug.log

You want TOR to run as a daemon, so uncomment this:

RunAsDaemon 1

You should uncomment this so TOR runs as a relay:

ORPort 9001

Put your server’s hostname here:

Address relay.lowend.party

Think up a clever name for your relay and uncomment this:

Nickname LowEndParty

Now you need to configure how much bandwidth you will allocate.  There are two methods.  The first is to set the amount of bandwidth per second, calculating that out for a month.  100KB/sec is about 255GB/mo, though it will take quite some time before your node “warms up” to the point where it’s serving that much.  If you want to give 1TB, you could set this to 375KB/sec or so:

RelayBandwidthRate 100 KB # Throttle traffic to 100KB/s (800Kbps)
RelayBandwidthBurst 200 KB # But allow bursts up to 200KB/s (1600Kbps)

You can also put in an overall limit.  Since most VPSes come with monthly bandwidth, it’s easiest to use these directives:

AccountingMax 1024 GB
AccountingStart month 1 00:00

These directives mean “use a maximum of 1TB in an accounting period that starts every month on the 1st.”

Be sure to put some contact info:

ContactInfo Joe Blow <joeblow@example.com>

Turn on directory advertising:

DirPort 9030

This next one is very important!  If you’re not running an exit node, set your exit policy to reject everything:

ExitPolicy reject *:*

If you are planning to run an exit node, consult the torrc comments if you wish to limit exit policies.

Firing Up TOR

Now all you need do is:

systemctl enable tor
systemctl start tor

Your node will not suddenly spring to life spewing out gigabytes of traffic.  This article has a good overview of a new node’s lifecycle.

Once your node is established you might want to view metrics on it.  You can search for your node here.  There’s also a map of all nodes you can view.  I see my node in Vegas!

 

raindog308

3 Comments

  1. Thanks for writing this tutorial Andrew! Very helpful.

    August 13, 2020 @ 10:31 am | Reply
  2. The list with friendly Tor hosts is a little bit outdated.

    August 13, 2020 @ 11:41 am | Reply
  3. name:

    Grammar correction: replace TOR with Tor.

    August 13, 2020 @ 6:28 pm | Reply

Leave a Reply to Jon Biloh Cancel reply

Some notes on commenting on LowEndBox:

  • Do not use LowEndBox for support issues. Go to your hosting provider and issue a ticket there. Coming here saying "my VPS is down, what do I do?!" will only have your comments removed.
  • Akismet is used for spam detection. Some comments may be held temporarily for manual approval.
  • Use <pre>...</pre> to quote the output from your terminal/console, or consider using a pastebin service.

Your email address will not be published. Required fields are marked *