-
Notifications
You must be signed in to change notification settings - Fork 127
/
index.html
919 lines (394 loc) · 46.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
<!DOCTYPE HTML>
<html lang="" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>前言 · V2Ray 配置指南|V2Ray 白话文教程</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.3">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-splitter/splitter.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-codeblock-filename/block.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-anchors/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-anchor-navigation-ex/style/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-code/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-prism/prism-okaidia.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-theme-comscore/test.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="prep/" />
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search" />
</div>
<nav role="navigation">
<ul class="summary">
<li>
<a href="https://github.com/ToutyRater" target="_blank" class="custom-link">My GitHub</a>
</li>
<li class="divider"></li>
<li class="chapter active" data-level="1.1" data-path="./">
<a href="./">
前言
</a>
</li>
<li class="chapter " data-level="1.2" data-path="prep/">
<a href="prep/">
开篇
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.1" data-path="prep/start.html">
<a href="prep/start.html">
开始之前
</a>
</li>
<li class="chapter " data-level="1.2.2" data-path="prep/install.html">
<a href="prep/install.html">
安装 V2Ray
</a>
</li>
<li class="chapter " data-level="1.2.3" data-path="prep/json.html">
<a href="prep/json.html">
配置格式
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.3" data-path="basic/">
<a href="basic/">
基本篇
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" data-path="basic/vmess.html">
<a href="basic/vmess.html">
VMess 协议
</a>
</li>
<li class="chapter " data-level="1.3.2" data-path="basic/Shadowsocks.html">
<a href="basic/Shadowsocks.html">
Shadowsocks 协议
</a>
</li>
<li class="chapter " data-level="1.3.3" data-path="basic/log.html">
<a href="basic/log.html">
日志文件
</a>
</li>
<li class="chapter " data-level="1.3.4" data-path="basic/routing/">
<a href="basic/routing/">
路由功能
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.4.1" data-path="basic/routing/cndirect.html">
<a href="basic/routing/cndirect.html">
国内直连
</a>
</li>
<li class="chapter " data-level="1.3.4.2" data-path="basic/routing/adblock.html">
<a href="basic/routing/adblock.html">
广告过滤
</a>
</li>
<li class="chapter " data-level="1.3.4.3" data-path="basic/routing/notice.html">
<a href="basic/routing/notice.html">
注意事项
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.3.5" data-path="basic/sumup.html">
<a href="basic/sumup.html">
小结
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="advanced/">
<a href="advanced/">
高级篇
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="advanced/mux.html">
<a href="advanced/mux.html">
Mux
</a>
</li>
<li class="chapter " data-level="1.4.2" data-path="advanced/mkcp.html">
<a href="advanced/mkcp.html">
mKCP
</a>
</li>
<li class="chapter " data-level="1.4.3" data-path="advanced/dynamicport.html">
<a href="advanced/dynamicport.html">
动态端口
</a>
</li>
<li class="chapter " data-level="1.4.4" data-path="advanced/outboundproxy.html">
<a href="advanced/outboundproxy.html">
代理转发
</a>
</li>
<li class="chapter " data-level="1.4.5" data-path="advanced/vps_relay.html">
<a href="advanced/vps_relay.html">
国内中转
</a>
</li>
<li class="chapter " data-level="1.4.6" data-path="advanced/httpfake.html">
<a href="advanced/httpfake.html">
HTTP 伪装
</a>
</li>
<li class="chapter " data-level="1.4.7" data-path="advanced/tls.html">
<a href="advanced/tls.html">
TLS
</a>
</li>
<li class="chapter " data-level="1.4.8" data-path="advanced/websocket.html">
<a href="advanced/websocket.html">
WebSocket
</a>
</li>
<li class="chapter " data-level="1.4.9" data-path="advanced/wss_and_web.html">
<a href="advanced/wss_and_web.html">
WebSocket+TLS+Web
</a>
</li>
<li class="chapter " data-level="1.4.10" data-path="advanced/h2.html">
<a href="advanced/h2.html">
HTTP/2
</a>
</li>
<li class="chapter " data-level="1.4.11" data-path="advanced/cdn.html">
<a href="advanced/cdn.html">
CDN
</a>
</li>
<li class="chapter " data-level="1.4.12" data-path="advanced/not_recommend.html">
<a href="advanced/not_recommend.html">
不建议的配置
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.5" data-path="app/">
<a href="app/">
应用篇
</a>
<ul class="articles">
<li class="chapter " data-level="1.5.1" data-path="app/transparent_proxy.html">
<a href="app/transparent_proxy.html">
透明代理(REDIRECT)
</a>
</li>
<li class="chapter " data-level="1.5.2" data-path="app/tproxy.html">
<a href="app/tproxy.html">
透明代理(TPROXY)
</a>
</li>
<li class="chapter " data-level="1.5.3" data-path="app/reverse.html">
<a href="app/reverse.html">
反向代理/内网穿透
</a>
</li>
<li class="chapter " data-level="1.5.4" data-path="app/reverse2.html">
<a href="app/reverse2.html">
反向代理/内网穿透2
</a>
</li>
<li class="chapter " data-level="1.5.5" data-path="app/dns.html">
<a href="app/dns.html">
内置 DNS
</a>
</li>
<li class="chapter " data-level="1.5.6" data-path="app/balance.html">
<a href="app/balance.html">
负载均衡
</a>
</li>
<li class="chapter " data-level="1.5.7" data-path="app/netflix.html">
<a href="app/netflix.html">
利用 V2Ray 看 Netflix
</a>
</li>
<li class="chapter " data-level="1.5.8" data-path="app/docker-deploy-v2ray.html">
<a href="app/docker-deploy-v2ray.html">
Docker 部署 V2Ray
</a>
</li>
<li class="chapter " data-level="1.5.9" data-path="app/benchmark.html">
<a href="app/benchmark.html">
不权威性能测试
</a>
</li>
<li class="chapter " data-level="1.5.10" data-path="app/optimization.html">
<a href="app/optimization.html">
内存优化
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.6" data-path="routing/">
<a href="routing/">
路由篇
</a>
<ul class="articles">
<li class="chapter " data-level="1.6.1" data-path="routing/sitedata.html">
<a href="routing/sitedata.html">
域名文件
</a>
</li>
<li class="chapter " data-level="1.6.2" data-path="routing/configurate_rules.html">
<a href="routing/configurate_rules.html">
路由规则设定方法
</a>
</li>
<li class="chapter " data-level="1.6.3" data-path="routing/bittorrent.html">
<a href="routing/bittorrent.html">
禁止 BT
</a>
</li>
<li class="chapter " data-level="1.6.4" data-path="routing/balance2.html">
<a href="routing/balance2.html">
负载均衡 2
</a>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
Published with GitBook
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >前言</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<div id="anchor-navigation-ex-navbar"><i class="fa fa-navicon"></i><ul><li><span class="title-icon "></span><a href="#v2ray-配置指南"><b>1. </b>V2Ray 配置指南</a></li><ul><li><span class="title-icon "></span><a href="#声明"><b>1.1. </b>声明</a></li><li><span class="title-icon "></span><a href="#简介"><b>1.2. </b>简介</a></li><ul><li><span class="title-icon "></span><a href="#什么是-v2ray?"><b>1.2.1. </b>什么是 V2Ray?</a></li><li><span class="title-icon "></span><a href="#v2ray-跟-shadowsocks-有什么区别?"><b>1.2.2. </b>V2Ray 跟 Shadowsocks 有什么区别?</a></li><li><span class="title-icon "></span><a href="#既然-v2ray-复杂,为什么要用它?"><b>1.2.3. </b>既然 V2Ray 复杂,为什么要用它?</a></li><li><span class="title-icon "></span><a href="#哪有十全十美的东西?"><b>1.2.4. </b>哪有十全十美的东西?</a></li><li><span class="title-icon "></span><a href="#为什么要写这篇文章?"><b>1.2.5. </b>为什么要写这篇文章?</a></li><li><span class="title-icon "></span><a href="#听你说了这么多,好像-v2ray-还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?"><b>1.2.6. </b>听你说了这么多,好像 V2Ray 还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?</a></li><li><span class="title-icon "></span><a href="#我决定尝试一下-v2ray,那么我该如何使用这个指南?"><b>1.2.7. </b>我决定尝试一下 V2Ray,那么我该如何使用这个指南?</a></li><li><span class="title-icon "></span><a href="#刚开始使用-v2ray,有什么需要注意的吗?"><b>1.2.8. </b>刚开始使用 V2Ray,有什么需要注意的吗?</a></li></ul></ul></ul></div><a href="#v2ray-配置指南" id="anchorNavigationExGoTop"><i class="fa fa-arrow-up"></i></a><h1 id="v2ray-配置指南"><a name="v2ray-配置指南" class="anchor-navigation-ex-anchor" href="#v2ray-配置指南"><i class="fa fa-link" aria-hidden="true"></i></a>1. V2Ray 配置指南</h1>
<h2 id="声明"><a name="声明" class="anchor-navigation-ex-anchor" href="#声明"><i class="fa fa-link" aria-hidden="true"></i></a>1.1. 声明</h2>
<p>V2Ray 配置指南(下称本指南)是网友自发编写的关于 V2Ray 如何配置及使用的指南,与 V2Ray 官方并无任何关系。尽管 V2Ray 厚爱将本指南的链接放到了其官网首页,这并不意味着本指南的建议或推荐为 V2Ray 官方所主张。</p>
<h2 id="简介"><a name="简介" class="anchor-navigation-ex-anchor" href="#简介"><i class="fa fa-link" aria-hidden="true"></i></a>1.2. 简介</h2>
<h3 id="什么是-v2ray?"><a name="什么是-v2ray?" class="anchor-navigation-ex-anchor" href="#什么是-v2ray?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.1. 什么是 V2Ray?</h3>
<p>V2Ray 是 Project V 下的一个工具。Project V 是一个包含一系列构建特定网络环境工具的项目,而 V2Ray 属于最核心的一个。 官方中介绍<code>Project V 提供了单一的内核和多种界面操作方式。内核(V2Ray)用于实际的网络交互、路由等针对网络数据的处理,而外围的用户界面程序提供了方便直接的操作流程。</code>不过从时间上来说,先有 V2Ray 才有 Project V。
如果还是不理解,那么简单地说,V2Ray 是一个与 Shadowsocks 类似的代理软件,可以用来科学上网(翻墙)学习国外先进科学技术。</p>
<p>V2Ray 用户手册:<a href="https://www.v2ray.com" target="_blank">https://www.v2ray.com</a>(已被墙)
<a href="https://v2ray.cool" target="_blank">https://v2ray.cool</a>(已被墙)</p>
<p>V2Ray 项目地址:<a href="https://github.com/v2ray/v2ray-core" target="_blank">https://github.com/v2ray/v2ray-core</a></p>
<p>V2Ray Telegram 使用群链接:<a href="https://t.me/projectv2ray" target="_blank">https://t.me/projectv2ray</a></p>
<h3 id="v2ray-跟-shadowsocks-有什么区别?"><a name="v2ray-跟-shadowsocks-有什么区别?" class="anchor-navigation-ex-anchor" href="#v2ray-跟-shadowsocks-有什么区别?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.2. V2Ray 跟 Shadowsocks 有什么区别?</h3>
<p>区别还是有的,Shadowsocks 只是一个简单的代理工具,而 V2Ray 定位为一个平台,任何开发者都可以利用 V2Ray 提供的模块开发出新的代理软件。</p>
<p>了解 Shadowsocks 历史的同学都知道,Shadowsocks 是 clowwindy 开发的自用的软件,开发的初衷只是为了让自己能够简单高效地科学上网,自己使用了很长一段时间后觉得不错才共享出来的。V2Ray 是 clowwindy 被喝茶之后 V2Ray 项目组为表示抗议开发的,一开始就致力于让大家更好更快的科学上网。</p>
<p>由于出生时的历史背景不同,导致了它们性格特点的差异。</p>
<p>简单来说,Shadowsocks 功能单一,V2Ray 功能强大。听起来似乎有点贬低 Shadowsocks 呢?当然不!换一个角度来看,Shadowsocks 简单好上手,V2Ray 复杂配置多。</p>
<h3 id="既然-v2ray-复杂,为什么要用它?"><a name="既然-v2ray-复杂,为什么要用它?" class="anchor-navigation-ex-anchor" href="#既然-v2ray-复杂,为什么要用它?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.3. 既然 V2Ray 复杂,为什么要用它?</h3>
<p>童鞋,某事物的优点和缺点总是相生相随的。相对来说,V2Ray 有以下优势:</p>
<ul>
<li><strong>更完善的协议:</strong> V2Ray 使用了新的自行研发的 VMess 协议,改正了 Shadowsocks 一些已有的缺点,更难被墙检测到</li>
<li><strong>更强大的性能:</strong> 网络性能更好,具体数据可以看 <a href="https://steemit.com/cn/@v2ray/3cjiux" target="_blank">V2Ray 官方博客</a></li>
<li><strong>更丰富的功能:</strong> 以下是部分 V2Ray 的功能<ul>
<li>mKCP: KCP 协议在 V2Ray 上的实现,不必另行安装 kcptun</li>
<li>动态端口:动态改变通信的端口,对抗对长时间大流量端口的限速封锁</li>
<li>路由功能:可以随意设定指定数据包的流向,去广告、反跟踪都可以</li>
<li>传出代理:看名字可能不太好理解,其实差不多可以称之为多重代理。类似于 Tor 的代理</li>
<li>数据包伪装:类似于 Shadowsocks-rss 的混淆,另外对于 mKCP 的数据包也可伪装,伪装常见流量,令识别更困难</li>
<li>WebSocket 协议:可以 PaaS 平台搭建V2Ray,通过 WebSocket 代理。也可以通过它使用 CDN 中转,抗封锁效果更好</li>
<li>Mux:多路复用,进一步提高科学上网的并发性能</li>
</ul>
</li>
</ul>
<h3 id="哪有十全十美的东西?"><a name="哪有十全十美的东西?" class="anchor-navigation-ex-anchor" href="#哪有十全十美的东西?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.4. 哪有十全十美的东西?</h3>
<p>少年悟性很高啊!当然没有!目前来说,V2Ray 有下面的缺点:</p>
<ul>
<li>配置复杂</li>
<li>产业链不成熟</li>
</ul>
<h3 id="为什么要写这篇文章?"><a name="为什么要写这篇文章?" class="anchor-navigation-ex-anchor" href="#为什么要写这篇文章?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.5. 为什么要写这篇文章?</h3>
<p>虽然其文档很详细,换个说法就是很长,一般用户看到这么长的使用文档都有点望而却步。另外我用 Google 搜索过 V2Ray,搜出来的文章非常少,只能寥寥数篇,而且至少都是好几月之前的,由于 V2Ray 的迭代速度快,一些文章对目前的 V2Ray 已经不适用了。所以我希望通过本指南:</p>
<ul>
<li>让大家了解到最新的 V2Ray 是什么样子的</li>
<li>让大家知道利用 V2Ray 可以做些什么</li>
<li>尝试用浅显易懂的语言来讲解 V2Ray 的配置</li>
<li>分享一些配置案例</li>
</ul>
<p>然而最重要的是希望大家能够通过我写的配置指南看懂 V2Ray 的手册。</p>
<h3 id="听你说了这么多,好像-v2ray-还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?"><a name="听你说了这么多,好像-v2ray-还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?" class="anchor-navigation-ex-anchor" href="#听你说了这么多,好像-v2ray-还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.6. 听你说了这么多,好像 V2Ray 还不错的样子。但我只是要翻翻墙而已,不想花太多时间怎么办?</h3>
<p>无论做什么都是有代价的,付出不一定有收获,但是不付出肯定没有收获。</p>
<h3 id="我决定尝试一下-v2ray,那么我该如何使用这个指南?"><a name="我决定尝试一下-v2ray,那么我该如何使用这个指南?" class="anchor-navigation-ex-anchor" href="#我决定尝试一下-v2ray,那么我该如何使用这个指南?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.7. 我决定尝试一下 V2Ray,那么我该如何使用这个指南?</h3>
<p>V2Ray 的用户手册非常详细地解释了 V2Ray,本指南主要以实际可用的配置从易到难来讲解 V2Ray 的功能特性,力求降低新手使用 V2Ray 的难度。</p>
<p><strong>本指南的目标用户是有一定的 Linux 操作基础,像怎么注册 VPS,怎么用 SSH 登录 VPS,怎么使用 nano(或 vim) 编辑一个文本以及一些 Linux 基本命令的使用件网上有一大堆的指南,没必要重复造轮子再写一篇教程,如果这些你不会,强烈建议你去学会了再来尝试搭建 V2Ray。</strong></p>
<p>本指南可以看作 V2Ray 用户手册的简易版本,也可以看作 V2Ray 的应用举例。你可以在不参考 V2Ray 用户手册的情况下按照本指南的指导去搭建配置 V2Ray ,但我并不建议你这么做。因为本指南只是引导大家如何理解和配置 V2Ray,相较于用户手册来说有一定的取舍,会忽略一部分东西。所以我希望大家也花时间去阅读 V2Ray 用户手册。</p>
<h3 id="刚开始使用-v2ray,有什么需要注意的吗?"><a name="刚开始使用-v2ray,有什么需要注意的吗?" class="anchor-navigation-ex-anchor" href="#刚开始使用-v2ray,有什么需要注意的吗?"><i class="fa fa-link" aria-hidden="true"></i></a>1.2.8. 刚开始使用 V2Ray,有什么需要注意的吗?</h3>
<p>由于许多 V2Ray 用户都有使用过 Shadowsocks 的经验,基本上可以按照使用 Shadowsocks 那样使用。但是 V2Ray 还是和 Shadowsocks 不太一样,所以我大概说一下使用上的差异。请注意,差异不代表好坏或优劣,如果一个事物必须拥有其他同类所拥有的东西,那么它也就没有了存在的意义。</p>
<ul>
<li>客户端:V2Ray 本身只是一个内核,V2Ray 上的图形客户端大多是调用 V2Ray 内核套一个图形界面的外壳,类似于 Linux 内核和 Linux 操作系统的关系;而 Shadowsocks 的客户端都是自己重新实现了一遍 Shadowsocks 协议。本文的内容短期内不涉及图形客户端的使用。</li>
<li>分流:也许大家第一反映是 PAC,实际上无论是 Shadowsocks (特指 Shadowsocks-libev) 还是 V2Ray 本身不支持 PAC,都是客户端加进来的;Shadowsocks 的分流使用 ACL,V2Ray 使用自己实现的路由功能,孰优孰劣只是仁者智者的问题。</li>
<li>分享链接/二维码:V2Ray 不像 Shadowsocks 那样有统一规定的 URL 格式,所以各个 V2Ray 图形客户端的分享链接/二维码不一定通用。</li>
<li>加密方式:V2Ray (特指 VMess 协议) 不像 Shadowsocks 那样看重对加密方式的选择,并且 VMess 的加密方式是由客户端指定的,服务器自适应。</li>
<li>时间:使用 V2Ray 要保证时间准确,因为这是为了安全设计的。</li>
<li>密码:V2Ray(VMesss) 只有 id(使用 UUID 的格式),作用类似于 Shadowsocks 的密码,但随机性远好于 Shadowsocks 的密码,只是不太方便记忆(安全和方便的矛盾)。</li>
<li>UDP 转发:VMess 是基于 TCP 的协议,对于 UDP 包 V2Ray 会转成 TCP 再传输的,即 UDP over TCP。要 UDP 转发功能在客户端的 socks 协议中开启 UDP 即可。</li>
<li>路由器翻墙:实际上它们并没有什么区别,不要以为没有插件就不能在路由器上用,看事物请看本质。</li>
</ul>
</section>
</div>
<div class="search-results">
<div class="has-results">
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
<ul class="search-results-list"></ul>
</div>
<div class="no-results">
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="prep/" class="navigation navigation-next navigation-unique" aria-label="Next page: 开篇">
<i class="fa fa-angle-right"></i>
</a>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"title":"前言","level":"1.1","depth":1,"next":{"title":"开篇","level":"1.2","depth":1,"path":"prep/README.md","ref":"prep/README.md","articles":[{"title":"开始之前","level":"1.2.1","depth":2,"path":"prep/start.md","ref":"prep/start.md","articles":[]},{"title":"安装 V2Ray","level":"1.2.2","depth":2,"path":"prep/install.md","ref":"prep/install.md","articles":[]},{"title":"配置格式","level":"1.2.3","depth":2,"path":"prep/json.md","ref":"prep/json.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["splitter","codeblock-filename","editlink","anchors","anchor-navigation-ex","theme-comscore","code","codeblock-filename","-highlight","prism","prism-themes"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"prism":{"css":["prismjs/themes/prism-okaidia.css"]},"editlink":{"label":"修订","multilingual":false,"base":"https://github.com/toutyrater/v2ray-guide/edit/master"},"splitter":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"code":{"copyButtons":true},"fontsettings":{"theme":"white","family":"sans","size":2},"anchor-navigation-ex":{"associatedWithSummary":true,"float":{"floatIcon":"fa fa-navicon","level1Icon":"","level2Icon":"","level3Icon":"","showLevelIcon":false},"mode":"float","multipleH1":true,"pageTop":{"level1Icon":"","level2Icon":"","level3Icon":"","showLevelIcon":false},"printLog":false,"showGoTop":true,"showLevel":true},"codeblock-filename":{},"theme-comscore":{},"prism-themes":{},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"anchors":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"V2Ray 配置指南|V2Ray 白话文教程","links":{"sidebar":{"My GitHub":"https://github.com/ToutyRater"}},"gitbook":"*","description":"关于 V2Ray 配置的详细教程"},"file":{"path":"README.md","mtime":"2020-03-15T02:46:22.393Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-03-15T02:47:12.878Z"},"basePath":".","book":{"language":""}});
});
</script>
</div>
<script src="gitbook/gitbook.js"></script>
<script src="gitbook/theme.js"></script>
<script src="gitbook/gitbook-plugin-splitter/splitter.js"></script>
<script src="gitbook/gitbook-plugin-editlink/plugin.js"></script>
<script src="gitbook/gitbook-plugin-code/plugin.js"></script>
<script src="gitbook/gitbook-plugin-search/search-engine.js"></script>
<script src="gitbook/gitbook-plugin-search/search.js"></script>
<script src="gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
<script src="gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
<script src="gitbook/gitbook-plugin-sharing/buttons.js"></script>
<script src="gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
<script src="gitbook/gitbook-plugin-theme-comscore/test.js"></script>
</body>
</html>