「V2Ray」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) (→GUI Client: 飜訳) |
Kusanaginoturugi (トーク | 投稿記録) (→ルーティングルール: 飜訳) |
||
53行目: | 53行目: | ||
=== ルーティングルール === |
=== ルーティングルール === |
||
− | + | [https://www.v2ray.com/en/configuration/routing.html Routing] と [https://guide.v2fly.org/en_US/basics/routing/basics_routing.html Routing of V2Ray] を参照してください。 |
|
− | + | ルーティングルールのプリセットファイルは、{{ic|/usr/share/v2ray}} にある {{ic|geosite.dat}} と {{ic|geoip.dat}} です。これらは、それぞれ {{Pkg|v2ray-domain-list-community}} と {{Pkg|v2ray-geoip}} パッケージによって提供されています。この2つのパッケージは、{{ic|v2ray}} の依存パッケージとしてデフォルトでインストールされます。 |
|
==== プリセットルーティングファイルの置き換え ==== |
==== プリセットルーティングファイルの置き換え ==== |
||
− | + | いくつかのルーティングルールファイルには、既製のパッケージがあります。例えば、[https://github.com/Loyalsoldier/v2ray-rules-dat @Loyalsoldier/v2ray-rules-dat] に対して {{AUR|v2ray-rules-dat-git}} パッケージをインストールすることができます。 |
|
− | For routing rule files without ready-made packages, you can [[ |
+ | For routing rule files without ready-made packages, you can [[パッケージの作成]] and install or remove {{Pkg|v2ray-domain-list-community}} and {{Pkg|v2ray-geoip}} [[pacman#Removing packages|without removing the dependent package]] and put the routing rule files in the {{ic|/usr/share/v2ray}} directory. |
− | {{Warning| |
+ | {{Warning|{{ic|geosite.dat}} と {{ic|geoip.dat}} を直接差し替えると、[[pacman#"Failed to commit transaction (conflicting files)" error|ファイルの競合]]が発生する場合があります。}} |
== 参照 == |
== 参照 == |
2022年8月10日 (水) 11:35時点における版
関連記事
V2Ray は、主にネットワークプロトコルや機能の実現を担うプロジェクト V の中核ツールであり、他のプロジェクト V との通信を行います。
目次
インストール
v2ray パッケージをインストールします。開発版の場合は、v2ray-gitAUR パッケージをインストールします。
設定
V2Ray の設定は、JSON 形式のファイルによって行われます。設定ファイルのフォーマットと設定を参照してください。
使用方法
ゴマンドラインから
V2Ray は、v2ray
コマンドで起動します。コマンドラインを参照してください。
デーモン管理
v2ray.service
を開始/有効化します。
複数の設定
複数の設定を使用するには、/etc/systemd/system/v2ray.service
を編集して、以下を追加します。
/etc/systemd/system/v2ray.service
[Unit] Description=V2Ray Service After=network.target nss-lookup.target [Service] User=nobody AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE ExecStart=/usr/bin/v2ray -confdir /etc/v2ray/ [Install] WantedBy=multi-user.target
GUI Client
Qv2ray を参照してください。
ヒントとコツ
ルーティングルール
Routing と Routing of V2Ray を参照してください。
ルーティングルールのプリセットファイルは、/usr/share/v2ray
にある geosite.dat
と geoip.dat
です。これらは、それぞれ v2ray-domain-list-community と v2ray-geoip パッケージによって提供されています。この2つのパッケージは、v2ray
の依存パッケージとしてデフォルトでインストールされます。
プリセットルーティングファイルの置き換え
いくつかのルーティングルールファイルには、既製のパッケージがあります。例えば、@Loyalsoldier/v2ray-rules-dat に対して v2ray-rules-dat-gitAUR パッケージをインストールすることができます。
For routing rule files without ready-made packages, you can パッケージの作成 and install or remove v2ray-domain-list-community and v2ray-geoip without removing the dependent package and put the routing rule files in the /usr/share/v2ray
directory.