Can anyone help with equivalents of the iptables rules given here https://trac.torproject.org/projects/tor/wiki/doc/TorFAQ#HowcanImakemyrelaya... but for a relay on a vps with a static ip?
Thanks,
Chris
Hi Chris,
The best advice is to use the packaged Tor and simply set ORPort to 443.
If for some reason you cannot do that (why?), the iptables rule from that article should work.
On 30.01.2013 21:29, Chris Baines wrote:
Can anyone help with equivalents of the iptables rules given here https://trac.torproject.org/projects/tor/wiki/doc/TorFAQ#HowcanImakemyrelaya... but for a relay on a vps with a static ip?
If you're using Ubuntu server, using UFW to manage your iptables rules is what I like doing.
sudo ufw enable sudo ufw allow 9030 sudo ufw allow 9001
Since it's a VPS (presuming remote), be sure to allow SSH:
sudo ufw limit 22/tcp
Check it then reload the config to enable it:
sudo ufw status verbose sudo ufw reload
And of course any other ports that you use, like I do serve my "This is an Exit Router" page from the same host, so:
sudo ufw allow 80/tcp sudo ufw reload
Cheers
On Wed, Jan 30, 2013 at 12:29 PM, Chris Baines cbaines8@gmail.com wrote:
Can anyone help with equivalents of the iptables rules given here https://trac.torproject.org/projects/tor/wiki/doc/TorFAQ#HowcanImakemyrelaya... but for a relay on a vps with a static ip?
Thanks,
Chris _______________________________________________ tor-relays mailing list tor-relays@lists.torproject.org https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays
tor-relays@lists.torproject.org