[tor-commits] [community/develop] present NetBSD to awesome people willing to support Tor :)

emmapeel at torproject.org emmapeel at torproject.org
Sat Oct 5 07:39:32 UTC 2019


commit d01fcd5fe64822fc1fd50fa3b9e778ac5295b207
Author: Vinicius Zavam <egypcio at googlemail.com>
Date:   Thu Oct 3 18:14:35 2019 +0000

    present NetBSD to awesome people willing to support Tor :)
      - this commit kinda mirrors the up to date wiki page to the new community portal;
      - all fine from 'wiki/TorRelayGuide/NetBSD';
      - keeping the standards for all *BSD guides, working out of the box for vanilla systems.
---
 .../technical-setup/guard/netbsd/contents.lr       | 51 ++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/content/relay-operations/technical-setup/guard/netbsd/contents.lr b/content/relay-operations/technical-setup/guard/netbsd/contents.lr
new file mode 100644
index 0000000..688cbce
--- /dev/null
+++ b/content/relay-operations/technical-setup/guard/netbsd/contents.lr
@@ -0,0 +1,51 @@
+_model: page
+---
+color: primary
+---
+title: NetBSD
+---
+body:
+
+# 1. Setup `pkg_add`
+
+```
+echo "PKG_PATH=http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/$(uname -m)/$(uname -r)/All" > /etc/pkg_install.conf
+```
+
+# 2. Install `tor` NetBSD's package
+
+```
+pkg_add tor
+```
+
+# 3. Configure `/usr/pkg/etc/tor/torrc`
+
+```
+Nickname    myBSDRelay    # Change your relay's nickname to something you like
+ContactInfo your at email    # Please write your email address and be aware that it will be published
+ORPort      443           # You might want to use/try a different port, should you want to
+ExitRelay   0
+SocksPort   0
+Log notice  syslog
+```
+
+# 6. Start `tor`:
+
+Here we set `tor` to start during boot and call it for the first time:
+
+```
+ln -sf /usr/pkg/share/examples/rc.d/tor /etc/rc.d/tor
+echo "tor=YES" >> /etc/rc.conf
+/etc/rc.d/tor start
+```
+
+---
+html: two-columns-page.html
+---
+key: 2
+---
+section: Middle/Guard relay
+---
+section_id: relay-operations
+---
+subtitle: How to deploy a Middle/Guard relay on NetBSD





More information about the tor-commits mailing list