「V2Ray」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(英語版より転載)
 
(飜訳)
6行目: 6行目:
 
{{Related articles end}}
 
{{Related articles end}}
   
  +
[https://github.com/v2fly/v2ray-core V2Ray] は、主にネットワークプロトコルや機能の実現を担うプロジェクト V の中核ツールであり、他のプロジェクト V との通信を行います。
[https://github.com/v2fly/v2ray-core V2Ray] is the core tool of Project V, which is mainly responsible for the realization of network protocols and functions, and communicates with other Project V.
 
   
== Installation ==
+
== インストール ==
   
  +
{{Pkg|v2ray}} パッケージをインストールします。開発版の場合は、{{AUR|v2ray-git}} パッケージをインストールします。
[[Install]] the {{Pkg|v2ray}} package. For the development version, install the {{AUR|v2ray-git}} package.
 
   
== Configuration ==
+
== 設定 ==
   
V2Ray configuration is done with a JSON formatted file. See [https://www.v2fly.org/en_US/config/overview.html Configuration File Format] and [https://www.v2ray.com/en/configuration/index.html Configuration].
+
V2Ray の設定は、JSON 形式のファイルによって行われます。[https://www.v2fly.org/en_US/config/overview.html 設定ファイルのフォーマット][https://www.v2ray.com/en/configuration/index.html 設定]を参照してください。
   
== Usage ==
+
== 使用方法 ==
   
=== From the command line ===
+
=== ゴマンドラインから ===
   
V2Ray is started with the {{ic|v2ray}} command. See [https://www.v2ray.com/en/welcome/command.html Commandline].
+
V2Ray は、{{ic|v2ray}} コマンドで起動します。[https://www.v2ray.com/en/welcome/command.html コマンドライン]を参照してください。
   
=== Daemon management ===
+
=== デーモン管理 ===
   
[[Start/enable]] {{ic|v2ray.service}}.
+
{{ic|v2ray.service}} を[[開始/有効化]]します。
   
==== Multiple config ====
+
==== 複数の設定 ====
   
 
To use [https://www.v2fly.org/config/multiple_config.html multiple config], you can [[edit]] {{ic|/etc/systemd/system/v2ray.service}}, add the following:
 
To use [https://www.v2fly.org/config/multiple_config.html multiple config], you can [[edit]] {{ic|/etc/systemd/system/v2ray.service}}, add the following:
49行目: 49行目:
 
See [[Qv2ray]].
 
See [[Qv2ray]].
   
== Tips and tricks ==
+
== ヒントとコツ ==
   
=== Routing rules ===
+
=== ルーティングルール ===
   
 
See [https://www.v2ray.com/en/configuration/routing.html Routing] and [https://guide.v2fly.org/en_US/basics/routing/basics_routing.html Routing of V2Ray] .
 
See [https://www.v2ray.com/en/configuration/routing.html Routing] and [https://guide.v2fly.org/en_US/basics/routing/basics_routing.html Routing of V2Ray] .
57行目: 57行目:
 
The preset routing rule files are {{ic|geosite.dat}} and {{ic|geoip.dat}} in {{ic|/usr/share/v2ray}}. They are provided by the {{Pkg|v2ray-domain-list-community}} and {{Pkg|v2ray-geoip}} packages respectively. These two packages are installed by default as dependencies of {{Pkg|v2ray}}.
 
The preset routing rule files are {{ic|geosite.dat}} and {{ic|geoip.dat}} in {{ic|/usr/share/v2ray}}. They are provided by the {{Pkg|v2ray-domain-list-community}} and {{Pkg|v2ray-geoip}} packages respectively. These two packages are installed by default as dependencies of {{Pkg|v2ray}}.
   
  +
==== プリセットルーティングファイルの置き換え ====
==== Replacing the preset routing rule files ====
 
   
 
There are ready-made packages for some routing rule files. For example, you can install the {{AUR|v2ray-rules-dat-git}} package for [https://github.com/Loyalsoldier/v2ray-rules-dat @Loyalsoldier/v2ray-rules-dat].
 
There are ready-made packages for some routing rule files. For example, you can install the {{AUR|v2ray-rules-dat-git}} package for [https://github.com/Loyalsoldier/v2ray-rules-dat @Loyalsoldier/v2ray-rules-dat].
65行目: 65行目:
 
{{Warning|Replacing {{ic|geosite.dat}} and {{ic|geoip.dat}} directly may cause [[pacman#"Failed to commit transaction (conflicting files)" error|file conflicts]].}}
 
{{Warning|Replacing {{ic|geosite.dat}} and {{ic|geoip.dat}} directly may cause [[pacman#"Failed to commit transaction (conflicting files)" error|file conflicts]].}}
   
== See also ==
+
== 参照 ==
   
 
* [https://www.v2fly.org/en_US V2Fly offical Website & Documentation]
 
* [https://www.v2fly.org/en_US V2Fly offical Website & Documentation]

2022年8月9日 (火) 14:41時点における版

関連記事

V2Ray は、主にネットワークプロトコルや機能の実現を担うプロジェクト V の中核ツールであり、他のプロジェクト V との通信を行います。

インストール

v2ray パッケージをインストールします。開発版の場合は、v2ray-gitAUR パッケージをインストールします。

設定

V2Ray の設定は、JSON 形式のファイルによって行われます。設定ファイルのフォーマット設定を参照してください。

使用方法

ゴマンドラインから

V2Ray は、v2ray コマンドで起動します。コマンドラインを参照してください。

デーモン管理

v2ray.service開始/有効化します。

複数の設定

To use multiple config, you can edit /etc/systemd/system/v2ray.service, add the following:

/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

See Qv2ray.

ヒントとコツ

ルーティングルール

See Routing and Routing of V2Ray .

The preset routing rule files are geosite.dat and geoip.dat in /usr/share/v2ray. They are provided by the v2ray-domain-list-community and v2ray-geoip packages respectively. These two packages are installed by default as dependencies of v2ray.

プリセットルーティングファイルの置き換え

There are ready-made packages for some routing rule files. For example, you can install the v2ray-rules-dat-gitAUR package for @Loyalsoldier/v2ray-rules-dat.

For routing rule files without ready-made packages, you can create packages 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.

警告: Replacing geosite.dat and geoip.dat directly may cause file conflicts.

参照