DEV Community

nabbisen
nabbisen

Posted on • Originally published at obsd.solutions

1 1

Tor on OpenBSD 7.3 (日本語)

はじめに

Tor 🧅 を用いることで、高いレベルで 👯 プライベートなWeb ✨ アクセスができます。

この記事で OpenBSD に Tor をインストールして動かす流れを紹介します。

環境

  • OS: OpenBSD 7.3
  • デーモン および クライアント: Tor 0.4

チュートリアル

インストール

最もかんたんな方法は pkg_add を使うことです:

$ doas pkg_add tor
Enter fullscreen mode Exit fullscreen mode

以下のような結果を得ました:

quirks-6.121 signed on 2023-06-27T13:21:34Z
tor-0.4.7.13:libevent-2.1.12p0: ok
tor-0.4.7.13: ok
The following new rcscripts were installed: /etc/rc.d/tor
See rcctl(8) for details.
Enter fullscreen mode Exit fullscreen mode

設定 (Optional)

設定ファイルは /etc/tor/torrc です。

デーモン起動

まずデーモンを有効化します:

$ doas rcctl enable tor
Enter fullscreen mode Exit fullscreen mode

そして起動します:

$ doas rcctl start tor
Enter fullscreen mode Exit fullscreen mode

以下のように出力されました:

tor(ok)
Enter fullscreen mode Exit fullscreen mode

テスト

動作を確認します:

$ curl \
      -x socks5h://127.0.0.1:9050 \
      -s https://check.torproject.org/api/ip
Enter fullscreen mode Exit fullscreen mode

以下のような出力を得るでしょう:

{"IsTor":true,"IP":"xxx.xxx.xxx.xxx"}
Enter fullscreen mode Exit fullscreen mode

正常に動いていて、Tor ネットワークとリレーに参加できているようです :)

おわりに

わずかな手順だけで OpenBSD から Tor に参加できます 🌻 🧅 🐡

Reinvent your career. Join DEV.

It takes one minute and is worth it for your career.

Get started

Top comments (0)

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay