-
Notifications
You must be signed in to change notification settings - Fork 39
/
0e6gd2jc.html
1008 lines (954 loc) · 93.1 KB
/
0e6gd2jc.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
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=10,IE=9,IE=8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<style type="text/css">
@font-face {font-family: 'jin_mei_mxplzx86d456993036';src: url('d25cg45r.gif');src: url('s5a_mob9.gif?#iefix') format('embedded-opentype'), url('6sjoftzg.bmp') format('woff'), url('a6fi06sp.jpg') format('truetype'), url('n__jfhdk.png#jin_mei_mxplzx') format('svg'); }.css86d456993036{font-family: 'jin_mei_mxplzx86d456993036';}
</style>
<style type="text/css">
@font-face {font-family: 'LiDeBiao-Xing320e75d0253036';src: url('cdn0zg3k.gif');src: url('shil52-c.gif?#iefix') format('embedded-opentype'), url('5530yv9l.bmp') format('woff'), url('aiz7tiqi.jpg') format('truetype'), url('nms8xvbp.png#LiDeBiao-Xing3') format('svg'); }.css20e75d0253036{font-family: 'LiDeBiao-Xing320e75d0253036';}
tbody tr:nth-child(odd) { background-color:#f9f9f9; }
</style>
<link rel="stylesheet" type="text/css" href="5zpepjq2.css">
<link id="favicon" href="0x31x2_s.ico" rel="icon" type="img/x-icon" />
<title>锐速(ServerSpeeder/LotServer)配置参数简单说明,合理修改配置 提高加速效果 | 逗比根据地</title>
<script>
window._deel = {name: '逗比根据地',url: 'https://doub.io/wp-content/themes/yusi1.0', ajaxpager: 'on', commenton: 1, roll: [1,3]}
</script>
<!-- All in One SEO Pack 2.3.16 by Michael Torbert of Semper Fi Web Design[1897,1967] -->
<meta name="description" content="很早就有人想让我写个 锐速的配置参数调整说明之类的教程,但是我对这些也不了解,最近实在没啥教程写,那就研究一下,简单写个文章好了,有错误欢迎指出。 安装锐速 优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版) Linux TCP加速工具 —— LotServer(锐速母公司)" />
<meta name="keywords" content="lotserver,serverspeeder,锐速" />
<link rel="canonical" href="0e6gd2jc.html" />
<!-- /all in one seo pack -->
<link rel='dns-prefetch' href='http://s.w.org/' />
<link rel='stylesheet' id='toggle-box-css' href='18tnq-0w.css?ver=4.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='style-css' href='h5iw86ku.css?ver=1.0' type='text/css' media='all' />
<script>!function(t,o,e){e=t.createElement(o),t=t.getElementsByTagName(o)[0],e.async=1,e.src="https://steadfastsystem.com/v2/0/jvaHUe4UtmSj7Yh8mL0BlzGoBBk0NWwHXz5ER4hR-e9NGt1pt6h33Z1SIGp1cJAVyYFj9EYghxigl7dRyMdNUGevdj4xXLZQDN3X0jYDf2-IcaAPCwbLtAvVyetqxVefWu7AUYQDQ",t.parentNode.insertBefore(e,t)}(document,"script"),function(t,o){t[o]=t[o]||function(){(t[o].q=t[o].q||[]).push(arguments)}}(document,window,"script","admiral");!function(t,e,n,a){function o(t){try{return t=localStorage.getItem("v4ac1eiZr0"),t&&t.split(",")[4]>0}catch(e){}return!1}function r(){var a=o();if(a){var r=t[e].pubads();typeof r.setTargeting===n&&r.setTargeting("admiral-engaged","true")}}a=t[e]=t[e]||{},a.cmd=a.cmd||[],typeof a.pubads===n?r():typeof a.cmd.unshift===n?a.cmd.unshift(r):a.cmd.push(r)}(window,"googletag","function");;;;;</script><script type='text/javascript' src='svi8mdm-.js?ver=1.0'></script>
<script type='text/javascript' src='rxwlqj1_.js?ver=4.8.1'></script>
<link rel='https://api.w.org/' href='n5wvb4_t.html' />
<link rel='prev' title='ShadowsocksR 推出 新协议“无加密”新玩法 [ auth_chain_a + none ]' href='9-b8lkgt-5.html' />
<link rel='next' title='Debian 编译安装 SNI Proxy 反向代理教程(可用于Hosts/DNS服务器)' href='3--didfb-4.html' />
<link rel='shortlink' href='https://doub.io/?p=2173' />
<link rel="alternate" type="application/json+oembed" href="https://doub.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdoub.io%2Fwlzy-33%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://doub.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdoub.io%2Fwlzy-33%2F&format=xml" />
<style>
.ik36f6a{
font-size: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.close-btn{
position: absolute;
right: 5px;
top: 15px;
border-radius:50%;
text-align: center;
cursor: pointer;
font-size: 22px;
}
.ik36f6a-hide{
display: none;
}
.ik36f6a-1{
width: 100%;
background: #1abc9c;
color: #fff;
text-align: center;
position: fixed;
bottom: 0px;
padding: 15px 0;
z-index: 100000;
}
/** Full Screen Style **/
.ik36f6a-2{
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .95);
z-index: 100000;
position: fixed;
top: 0;
right: 0;
}
.ik36f6a-2 .ik36f6a-body,.ik36f6a-3 .ik36f6a-body{
background: #fff;
color: #666;
text-align: center;
position: fixed;
margin: auto;
top: 200px;
right: 10%;
width: 80%;
padding: 20px;
z-index: 100001;
border-radius: 10px;
}
.ik36f6a-2 .close-btn,.ik36f6a-3 .close-btn{
background: #e84206;
color: #fff;
}
/** Flying Box Style **/
.ik36f6a-3 .ik36f6a-body{
box-shadow: 2px 2px 2px #333;
}
</style>
<script>
(function(window) {
var KillAdBlock = function(options) {
this._options = {
checkOnLoad: false,
resetOnEnd: false,
loopCheckTime: 50,
loopMaxNumber: 5,
baitClass: 'pub_300x250 pub_300x250m pub_728x90 text-ad textAd text_ad text_ads text-ads text-ad-links',
baitStyle: 'width: 1px !important; height: 1px !important; position: absolute !important; left: -10000px !important; top: -1000px !important;',
debug: false
};
this._var = {
version: '1.2.0',
bait: null,
checking: false,
loop: null,
loopNumber: 0,
event: { detected: [], notDetected: [] }
};
if(options !== undefined) {
this.setOption(options);
}
var self = this;
var eventCallback = function() {
setTimeout(function() {
if(self._options.checkOnLoad === true) {
if(self._options.debug === true) {
self._log('onload->eventCallback', 'A check loading is launched');
}
if(self._var.bait === null) {
self._creatBait();
}
setTimeout(function() {
self.check();
}, 1);
}
}, 1);
};
if(window.addEventListener !== undefined) {
window.addEventListener('load', eventCallback, false);
} else {
window.attachEvent('onload', eventCallback);
}
};
KillAdBlock.prototype._options = null;
KillAdBlock.prototype._var = null;
KillAdBlock.prototype._bait = null;
KillAdBlock.prototype._log = function(method, message) {
console.log('[KillAdBlock]['+method+'] '+message);
};
KillAdBlock.prototype.setOption = function(options, value) {
if(value !== undefined) {
var key = options;
options = {};
options[key] = value;
}
for(var option in options) {
this._options[option] = options[option];
if(this._options.debug === true) {
this._log('setOption', 'The option "'+option+'" he was assigned to "'+options[option]+'"');
}
}
return this;
};
KillAdBlock.prototype._creatBait = function() {
var bait = document.createElement('div');
bait.setAttribute('class', this._options.baitClass);
bait.setAttribute('style', this._options.baitStyle);
this._var.bait = window.document.body.appendChild(bait);
this._var.bait.offsetParent;
this._var.bait.offsetHeight;
this._var.bait.offsetLeft;
this._var.bait.offsetTop;
this._var.bait.offsetWidth;
this._var.bait.clientHeight;
this._var.bait.clientWidth;
if(this._options.debug === true) {
this._log('_creatBait', 'Bait has been created');
}
};
KillAdBlock.prototype._destroyBait = function() {
window.document.body.removeChild(this._var.bait);
this._var.bait = null;
if(this._options.debug === true) {
this._log('_destroyBait', 'Bait has been removed');
}
};
KillAdBlock.prototype.check = function(loop) {
if(loop === undefined) {
loop = true;
}
if(this._options.debug === true) {
this._log('check', 'An audit was requested '+(loop===true?'with a':'without')+' loop');
}
if(this._var.checking === true) {
if(this._options.debug === true) {
this._log('check', 'A check was canceled because there is already an ongoing');
}
return false;
}
this._var.checking = true;
if(this._var.bait === null) {
this._creatBait();
}
var self = this;
this._var.loopNumber = 0;
if(loop === true) {
this._var.loop = setInterval(function() {
self._checkBait(loop);
}, this._options.loopCheckTime);
}
setTimeout(function() {
self._checkBait(loop);
}, 1);
if(this._options.debug === true) {
this._log('check', 'A check is in progress ...');
}
return true;
};
KillAdBlock.prototype._checkBait = function(loop) {
var detected = false;
if(this._var.bait === null) {
this._creatBait();
}
if(window.document.body.getAttribute('abp') !== null
|| this._var.bait.offsetParent === null
|| this._var.bait.offsetHeight == 0
|| this._var.bait.offsetLeft == 0
|| this._var.bait.offsetTop == 0
|| this._var.bait.offsetWidth == 0
|| this._var.bait.clientHeight == 0
|| this._var.bait.clientWidth == 0) {
detected = true;
}
if(window.getComputedStyle !== undefined) {
var baitTemp = window.getComputedStyle(this._var.bait, null);
if(baitTemp.getPropertyValue('display') == 'none'
|| baitTemp.getPropertyValue('visibility') == 'hidden') {
detected = true;
}
}
if(this._options.debug === true) {
this._log('_checkBait', 'A check ('+(this._var.loopNumber+1)+'/'+this._options.loopMaxNumber+' ~'+(1+this._var.loopNumber*this._options.loopCheckTime)+'ms) was conducted and detection is '+(detected===true?'positive':'negative'));
}
if(loop === true) {
this._var.loopNumber++;
if(this._var.loopNumber >= this._options.loopMaxNumber) {
this._stopLoop();
}
}
if(detected === true) {
this._stopLoop();
this._destroyBait();
this.emitEvent(true);
if(loop === true) {
this._var.checking = false;
}
} else if(this._var.loop === null || loop === false) {
this._destroyBait();
this.emitEvent(false);
if(loop === true) {
this._var.checking = false;
}
}
};
KillAdBlock.prototype._stopLoop = function(detected) {
clearInterval(this._var.loop);
this._var.loop = null;
this._var.loopNumber = 0;
if(this._options.debug === true) {
this._log('_stopLoop', 'A loop has been stopped');
}
};
KillAdBlock.prototype.emitEvent = function(detected) {
if(this._options.debug === true) {
this._log('emitEvent', 'An event with a '+(detected===true?'positive':'negative')+' detection was called');
}
var fns = this._var.event[(detected===true?'detected':'notDetected')];
for(var i in fns) {
if(this._options.debug === true) {
this._log('emitEvent', 'Call function '+(parseInt(i)+1)+'/'+fns.length);
}
if(fns.hasOwnProperty(i)) {
fns[i]();
}
}
if(this._options.resetOnEnd === true) {
this.clearEvent();
}
return this;
};
KillAdBlock.prototype.clearEvent = function() {
this._var.event.detected = [];
this._var.event.notDetected = [];
if(this._options.debug === true) {
this._log('clearEvent', 'The event list has been cleared');
}
};
KillAdBlock.prototype.on = function(detected, fn) {
this._var.event[(detected===true?'detected':'notDetected')].push(fn);
if(this._options.debug === true) {
this._log('on', 'A type of event "'+(detected===true?'detected':'notDetected')+'" was added');
}
return this;
};
KillAdBlock.prototype.onDetected = function(fn) {
return this.on(true, fn);
};
KillAdBlock.prototype.onNotDetected = function(fn) {
return this.on(false, fn);
};
window.KillAdBlock = KillAdBlock;
if(window.killAdBlock === undefined) {
window.killAdBlock = new KillAdBlock({
checkOnLoad: true,
resetOnEnd: true
});
}
})(window);
function show_message()
{
kill_adBlock_message_delay = kill_adBlock_message_delay * 1000;
kill_adBlock_close_automatically_delay = kill_adBlock_close_automatically_delay * 1000;
setTimeout(function(){
jQuery('.ik36f6a').html(kill_adBlock_message);
jQuery('.ik36f6a-container').fadeIn();
}, kill_adBlock_message_delay);
if(kill_adBlock_close_automatically_delay>0 && kill_adBlock_close_automatically==1)
{
setTimeout(function(){
jQuery('.close-btn').trigger('click');
}, kill_adBlock_close_automatically_delay);
}
}
function adBlockNotDetected(){}
jQuery(document).ready(function(){
jQuery('.close-btn').click(function(){
jQuery('.ik36f6a-container').fadeOut('ik36f6a-hide');
});
});
var kill_adBlock_status = 1;
var kill_adBlock_message = '逗比很伤心😥,您的<strong>广告拦截扩展</strong>屏蔽了我们的小广告,网站的发展离不开大家的支持,请先看过<a target=\"_blank\" style=\"color: #ffe500;\" href=\"3--didfb.html\">这个文章</a>后,再确定是否要将我们的域名添加到<strong>拦截白名单</strong>中,谢谢!😘👌';
var kill_adBlock_message_delay = 0;
var kill_adBlock_close_btn = 1;
var kill_adBlock_close_automatically = 0;
var kill_adBlock_close_automatically_delay = 0;
var kill_adBlock_message_type = 1;
function adBlockDetected() {
show_message();
}
if(typeof killAdBlock === 'undefined') {
adBlockDetected();
} else {
killAdBlock.onDetected(adBlockDetected).onNotDetected(adBlockNotDetected);
}
</script>
<link rel="stylesheet" href="6zn-2ir4.css" type="text/css" media="all" />
<meta name="keywords" content="lotserver, ServerSpeeder, 锐速, 网络资源">
<meta name="description" content="很早就有人想让我写个 锐速的配置参数调整说明之类的教程,但是我对这些也不了解,最近实在没啥教程写,那就研究一下,简单写个文章好了,有错误欢迎指出。 安装锐速 优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版) Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本 某种程度上来说,锐速(ServerSpeeder)和LotServer是一样的,相比之下我更推荐后者。 两者安装并不冲突">
<!--[if lt IE 9]><script src="https://doub.io/wp-content/themes/yusi1.0/js/html5.js"></script><![endif]-->
<style type="text/css">.dg ul{list-style:none;margin:0;padding:0;width:100%;clear:both}.dg.ac{position:fixed;top:0;left:0;right:0;height:0;z-index:0}.dg:not(.ac) .main{overflow:hidden}.dg.main{-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.dg.main.taller-than-window{overflow-y:auto}.dg.main.taller-than-window .close-button{opacity:1;margin-top:-1px;border-top:1px solid #2c2c2c}.dg.main ul.closed .close-button{opacity:1!important}.dg.main .close-button.drag,.dg.main:hover .close-button{opacity:1}.dg.main .close-button{-webkit-transition:opacity .1s linear;transition:opacity .1s linear;border:0;position:absolute;line-height:19px;height:20px;cursor:pointer;text-align:center;background-color:#000}.dg.main .close-button:hover{background-color:#111}.dg.a{float:right;margin-right:15px;overflow-x:hidden}.dg.a.has-save>ul{margin-top:27px}.dg.a.has-save>ul.closed{margin-top:0}.dg.a .save-row{position:fixed;top:0;z-index:1002}.dg li{-webkit-transition:height .1s ease-out;transition:height .1s ease-out}.dg li:not(.folder){cursor:auto;height:27px;line-height:27px;overflow:hidden;padding:0 4px 0 5px}.dg li.folder{padding:0;border-left:4px solid transparent}.dg li.title{cursor:pointer;margin-left:-4px}.dg .closed li:not(.title),.dg .closed ul li,.dg .closed ul li>*{height:0;overflow:hidden;border:0}.dg .cr{clear:both;padding-left:3px;height:27px}.dg .property-name{cursor:default;float:left;clear:left;width:40%;overflow:hidden;text-overflow:ellipsis}.dg .c{float:left;width:60%}.dg .c input[type=text]{border:0;margin-top:4px;padding:3px;width:100%;float:right}.dg .has-slider input[type=text]{width:30%;margin-left:0}.dg .slider{float:left;width:66%;margin-left:-5px;margin-right:0;height:19px;margin-top:4px}.dg .slider-fg{height:100%}.dg .c input[type=checkbox]{margin-top:9px}.dg .c select{margin-top:5px}.dg .cr.boolean,.dg .cr.boolean *,.dg .cr.function,.dg .cr.function *,.dg .cr.function .property-name{cursor:pointer}.dg .selector{display:none;position:absolute;margin-left:-9px;margin-top:23px;z-index:10}.dg .c:hover .selector,.dg .selector.drag{display:block}.dg li.save-row{padding:0}.dg li.save-row .button{display:inline-block;padding:0 6px}.dg.dialogue{background-color:#222;width:460px;padding:15px;font-size:13px;line-height:15px}#dg-new-constructor{padding:10px;color:#222;font-family:Monaco,monospace;font-size:10px;border:0;resize:none;box-shadow:inset 1px 1px 1px #888;word-wrap:break-word;margin:12px 0;display:block;width:440px;overflow-y:scroll;height:100px;position:relative}#dg-local-explain{display:none;font-size:11px;line-height:17px;border-radius:3px;background-color:#333;padding:8px;margin-top:10px}#dg-local-explain code{font-size:10px}#dat-gui-save-locally{display:none}.dg{color:#eee;font:11px Lucida Grande,sans-serif;text-shadow:0 -1px 0 #111}.dg.main::-webkit-scrollbar{width:5px;background:#1a1a1a}.dg.main::-webkit-scrollbar-corner{height:0;display:none}.dg.main::-webkit-scrollbar-thumb{border-radius:5px;background:#676767}.dg li:not(.folder){background:#1a1a1a;border-bottom:1px solid #2c2c2c}.dg li.save-row{line-height:25px;background:#dad5cb;border:0}.dg li.save-row select{margin-left:5px;width:108px}.dg li.save-row .button{margin-left:5px;margin-top:1px;border-radius:2px;font-size:9px;line-height:7px;padding:4px 4px 5px;background:#c5bdad;color:#fff;text-shadow:0 1px 0 #b0a58f;box-shadow:0 -1px 0 #b0a58f;cursor:pointer}.dg li.save-row .button.gears{background:#c5bdad url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQJJREFUeNpiYKAU/P//PwGIC/ApCABiBSAW+I8AClAcgKxQ4T9hoMAEUrxx2QSGN6+egDX+/vWT4e7N82AMYoPAx/evwWoYoSYbACX2s7KxCxzcsezDh3evFoDEBYTEEqycggWAzA9AuUSQQgeYPa9fPv6/YWm/Acx5IPb7ty/fw+QZblw67vDs8R0YHyQhgObx+yAJkBqmG5dPPDh1aPOGR/eugW0G4vlIoTIfyFcA+QekhhHJhPdQxbiAIguMBTQZrPD7108M6roWYDFQiIAAv6Aow/1bFwXgis+f2LUAynwoIaNcz8XNx3Dl7MEJUDGQpx9gtQ8YCueB+D26OECAAQDadt7e46D42QAAAABJRU5ErkJggg==) 2px 1px no-repeat;height:7px;width:8px}.dg li.save-row .button:hover{background-color:#bab19e;box-shadow:0 -1px 0 #b0a58f}.dg li.folder{border-bottom:0}.dg li.title{padding-left:16px;background:#000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 10px no-repeat;cursor:pointer;border-bottom:1px solid hsla(0,0%,100%,.2)}.dg .closed li.title{background-image:url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==)}.dg .cr.boolean{border-left:3px solid #806787}.dg .cr.color{border-left:3px solid}.dg .cr.function{border-left:3px solid #e61d5f}.dg .cr.number{border-left:3px solid #2fa1d6}.dg .cr.number input[type=text]{color:#2fa1d6}.dg .cr.string{border-left:3px solid #1ed36f}.dg .cr.string input[type=text]{color:#1ed36f}.dg .cr.boolean:hover,.dg .cr.function:hover{background:#111}.dg .c input[type=text]{background:#303030;outline:none}.dg .c input[type=text]:hover{background:#3c3c3c}.dg .c input[type=text]:focus{background:#494949;color:#fff}.dg .c .slider{background:#303030;cursor:ew-resize}.dg .c .slider-fg{background:#2fa1d6;max-width:100%}.dg .c .slider:hover{background:#3c3c3c}.dg .c .slider:hover .slider-fg{background:#44abda}</style>
<script type="text/javascript">try {
var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)};
var AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }};
var AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } };
var AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; };
var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } };
var AdFox_getCodeScript = function() {};
AG_onLoad(function() { AG_each('iframe[id^="AdFox_iframe_"]', function(el) { if (el && el.parentNode) { el.parentNode.removeChild(el); } }); });
try { Object.defineProperty(window, 'noAdsAtAll', { get: function() { return true; } }); } catch (ex) {}
navigator.getBattery = undefined;
(function() { window.Ya = window.Ya || {}; window.Ya.Metrika = function() { var noop = function() {}; this.addFileExtension = noop; this.extLink = noop; this.file = noop; this.hit = noop; this.notBounce = noop; this.params = noop; this.reachGoal = noop; this.replacePhones = noop; this.clickmap = noop; this.trackLinks = noop; }; })();
var _gaq = []; var _gat = { _getTracker: function() { return { _initData: function(){}, _trackPageview: function(){}, _trackEvent: function(){}, _setAllowLinker: function() {}, _setCustomVar: function() {} } }, _createTracker: function() { return this._getTracker(); }, _anonymizeIp: function() {} };
function urchinTracker() {};
window.uabInject = function() {};
} catch (ex) { console.error('Error executing AG js: ' + ex); }</script>
</head>
<body class="post-template-default single single-post postid-2173 single-format-standard">
<header id="header" class="header">
<div class="container-inner" style="display: block;">
<div class="yusi-logo" style="display: block;">
<a href="index.html">
<h1>
<span style="font-family:'jin_mei_mxplzx86d456993036';color: #fff;font-weight: normal;font-size: 54px;animation: shake-slow 300s ease-in-out infinite;" class="preview-item small shake-slow shake-constant shake-constant--hover">逗比根据地</span>
<span style="font-family:'LiDeBiao-Xing320e75d0253036';color: #fff;font-size: 24px;animation: shake-slow 300s ease-in-out infinite;" class="preview-item small shake-slow shake-constant shake-constant--hover">– 世界那么逗,我想出去看看</span>
</h1>
</a>
</div>
</div>
<div id="nav-header" class="navbar" style="display: block;">
<ul class="nav">
<li><a href="index.html"><i class="fa fa-fire"></i> 首页</a></li>
<li><a target="_blank" href="2mnz2ayl.html"><i class="fa fa-star"></i> 逗比推荐</a>
<ul class="sub-menu">
<li><a target="_blank" href="oy_8f2i-.html">碉堡网站</a></li>
<li><a target="_blank" href="w9qs7z5o.html">逗比软件</a></li>
<li><a target="_blank" href="a_7fusf-.html">虚拟主机</a></li>
<li><a target="_blank" href="hi10k-7p.html">VPS资源</a></li>
</ul>
</li>
<li class="current-post-ancestor"><a target="_blank" href="khwjusu7.html"><i class="fa fa-globe fa-spin"></i> 科学上网</a>
<ul class="sub-menu">
<li><a target="_blank" href="xk611kx-.html">安卓合集</a></li>
<li><a target="_blank" href="pnqap_t4.html">电脑合集</a></li>
<li class="current-post-ancestor current-menu-parent"><a target="_blank" href="c8ljt6o8.html">网络资源</a></li>
<li><a target="_blank" href="f3dg9hl6.html">建站资源</a></li>
<li><a target="_blank" href="3we1qxzj.html">VPN资源</a></li>
<li><a target="_blank" href="1jg9z3mv.html">Shell脚本</a></li>
<li><a target="_blank" href="3tpr86rp.html">Linux教程</a></li>
</ul>
</li>
<li><a target="_blank" href="6r9z6_wi.html"><i class="fa fa-paper-plane" style="font-size: 19px;"></i> Shadowsocks</a>
<ul class="sub-menu">
<li><a target="_blank" href="dibdjmr6.html"><span style="color: #ffe200;">网站文章 合辑</span></a></li>
<li><a target="_blank" href="6r9z6_wi.html">所有教程 合辑</a></li>
<li><a target="_blank" href="6r9z6_wi-2.html">小白常见 问题</a></li>
<li><a target="_blank" href="hi10k-7p-2.html">故障排除 方法</a></li>
<li><a target="_blank" href="z2a4lk3l.html">一键管理 脚本</a></li>
<li><a target="_blank" href="z2a4lk3l-2.html">一键管理 脚本2</a></li>
<li><a target="_blank" href="kd691l4o.html">一键管理 脚本3</a></li>
</ul>
</li>
<li><a target="_blank" href="95f80__8.html"><i class="fa fa-share-alt"></i> 免费账号分享</a></li>
<li><a target="_blank" href="jgjhicaj.html"><i class="fa fa-tasks"></i> 便宜VPS推荐</a></li>
<li><a target="_blank" href="./softs.wtf/"><i class="fa fa-cloud"></i> 逗比云</a></li>
<li><a target="_blank" href="4jo7-e0n.html"><i class="fa fa-list-alt"></i> 留言</a></li>
<li style="float:right;">
<div class="toggle-search" style="width: 60px;"><i class="fa fa-search"></i><a href="#" style="padding: 0;">搜索</a></div>
<div class="search-expand" style="display: none;"><div class="search-expand-inner"><form method="get" class="searchform themeform" onsubmit="location.href='https://www.google.com/search?q=' + encodeURIComponent(this.s.value).replace(/%20/g, '+') + '%20site%3Atoyodadoubi.github.io'; return false;" action="https://toyodadoubi.github.io/"><div> <input type="ext" class="search" name="s" onblur="if(this.value=='')this.value='请善用搜索功能...';" onfocus="if(this.value=='请善用搜索功能...')this.value='';" value="请善用搜索功能..."></div></form></div></div>
</li>
</ul>
</div>
</header>
<section class="container"><div class="speedbar">
<div class="toptip"><strong class="text-success"><i class="fa fa-volume-up"></i> </strong> 逗比云还是逃不过被墙的命运,既然如此那以后逗比云也就一直用被墙的旧域名 <strong><a target="_blank" href="./softs.wtf/">[softs.wtf]</a></strong> 算了。
<div style="float: right;margin: 0 10px;"><a target="_blank" href="_q1y782c.html"><i class="fa fa-envelope" style="color: #1abc9c;opacity: 1;"></i>投稿文章</a> | <a target="_blank" href="939koj07.html"><i class="fa fa-money" style="color: #1abc9c;opacity: 1;"></i>广告合作</a> | <a target="_blank" href="https://doub.io/go/tg"><i class="fa fa-paper-plane" style="color: #1abc9c;opacity: 1;"></i>Telegram 群组</a> / <a target="_blank" href="https://doub.io/go/tg_a">公告频道</a> / <a target="_blank" href="ma7f_p6p.html">使用教程</a></div></div>
</div>
<div class="guangg guangg-site"><div style="position: absolute;left: 4px;top: 14px;font-size: 12px;color: #fff;border: 1px solid #ffffff;line-height: 12px;opacity: 0.9;">广告</div>
<a title="特别声明:此图片为广告投放,与本站无任何关系。" target="_blank" href="https://www.gigsgigscloud.com/"><img src="5ny9g1s2.gif" class="top_guangg" /></a></div><div class="content-wrap">
<div style="display: block;">
<div class="content" style="display: block;">
<header class="article-header">
<h1 class="article-title"><a href="0e6gd2jc.html">锐速(ServerSpeeder/LotServer)配置参数简单说明,合理修改配置 提高加速效果</a></h1>
<div class="meta">
<span id="mute-category" class="muted"><i class="fa fa-list-alt"></i><a href="c8ljt6o8.html"> 网络资源</a></span> <span class="muted"><i class="fa fa-user"></i> <a href="3x8ussyf.html">Toyo</a></span>
<time class="muted"><i class="fa fa-clock-o"></i> 2年前 (2017-05-02)</time>
<!-- span class="muted"><i class="fa fa-eye"></i> 11034℃</span -->
<span class="muted"><i class="fa fa-comments-o"></i> <a href="0e6gd2jc.html#comments">25评论</a></span> </div>
</header>
<div class="guangg guangg-post"><div style="position: absolute;left: 3px;top: 14px;font-size: 12px;color: #fff;border: 1px solid #ffffff;line-height: 12px;opacity: 0.9;">广告</div>
<a title="特别声明:此图片为广告投放,与本站无任何关系。" target="_blank" href="https://doub.io/go/yitianjian_shadow/"><img src="wklm68vn.png" class="top_guangg" /></a></div> <article class="article-content">
<div id="content-index" class="content-index"><div class="content-index-title"><a id="content-index-togglelink" href="javascript:content_index_toggleToc()">文章目录 ⚐</a></div>
<script type="text/javascript" language="javascript">
window.content_index_showTocToggle=false;function content_index_toggleToc(){var tts="文章目录 ⚐";var tth="文章目录 ⚑";if(window.content_index_showTocToggle){window.content_index_showTocToggle=false;document.getElementById("content-index-contents").style.display="none";document.getElementById("content-index-togglelink").innerHTML=tts}else{window.content_index_showTocToggle=true;document.getElementById("content-index-contents").style.display="block";document.getElementById("content-index-togglelink").innerHTML=tth}}
</script>
<ul id="content-index-contents" style="display: none;"><li class="content-index-level-1"><a href="0e6gd2jc.html#安装锐速" title="安装锐速"><span>安装锐速</span></a><ul class="children"><li class="content-index-level-2"><a href="0e6gd2jc.html#配置文件" title="配置文件"><span>配置文件</span></a></li></ul></li><li class="content-index-level-1"><a href="0e6gd2jc.html#参数说明" title="参数说明"><span>参数说明</span></a><ul class="children"><li class="content-index-level-2"><a href="0e6gd2jc.html#示例配置" title="示例配置"><span>示例配置</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#其他说明:" title="其他说明:"><span>其他说明:</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#加速接口" title="加速接口"><span>加速接口</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#TCP 加速开关" title="TCP 加速开关"><span>TCP 加速开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#高级加速开关" title="高级加速开关"><span>高级加速开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#高级入向加速开关" title="高级入向加速开关"><span>高级入向加速开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#加速接口 上行带宽" title="加速接口 上行带宽"><span>加速接口 上行带宽</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#加速接口 下行带宽" title="加速接口 下行带宽"><span>加速接口 下行带宽</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#流量整形开关,配合上行和下行带宽设置开启" title="流量整形开关,配合上行和下行带宽设置开启"><span>流量整形开关,配合上行和下行带宽设置开启</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#csvmode 拥塞控制模式开关" title="csvmode 拥塞控制模式开关"><span>csvmode 拥塞控制模式开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#局域网加速开关" title="局域网加速开关"><span>局域网加速开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#最大传输模式" title="最大传输模式"><span>最大传输模式</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#最大传输模式生效时间" title="最大传输模式生效时间"><span>最大传输模式生效时间</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#抓包功能开关" title="抓包功能开关"><span>抓包功能开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#流量 bypass 开关" title="流量 bypass 开关"><span>流量 bypass 开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#初始 TCP 发送窗口能够发送的数据包的数量" title="初始 TCP 发送窗口能够发送的数据包的数量"><span>初始 TCP 发送窗口能够发送的数据包的数量</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#从 LAN 到 WAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限" title="从 LAN 到 WAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限"><span>从 LAN 到 WAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#从 WAN 到 LAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限;" title="从 WAN 到 LAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限;"><span>从 WAN 到 LAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限;</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#slab 缓存缩减开关" title="slab 缓存缩减开关"><span>slab 缓存缩减开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#重传等待时间" title="重传等待时间"><span>重传等待时间</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#网络拥塞判断" title="网络拥塞判断"><span>网络拥塞判断</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#双边缓存设置" title="双边缓存设置"><span>双边缓存设置</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#仅处理TCP流量" title="仅处理TCP流量"><span>仅处理TCP流量</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#引擎允许的最大突发时间" title="引擎允许的最大突发时间"><span>引擎允许的最大突发时间</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#网卡接收端合并开关" title="网卡接收端合并开关"><span>网卡接收端合并开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#GSO 开关" title="GSO 开关"><span>GSO 开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#lanSegment 开关" title="lanSegment 开关"><span>lanSegment 开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#启动锐速时 写入配置所需时间" title="启动锐速时 写入配置所需时间"><span>启动锐速时 写入配置所需时间</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#锐速 启动的加速引擎(对应CPU核心)的的个数" title="锐速 启动的加速引擎(对应CPU核心)的的个数"><span>锐速 启动的加速引擎(对应CPU核心)的的个数</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#白名单开关" title="白名单开关"><span>白名单开关</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#锐速 模块文件的路径" title="锐速 模块文件的路径"><span>锐速 模块文件的路径</span></a></li><li class="content-index-level-2"><a href="0e6gd2jc.html#锐速 授权文件的路径" title="锐速 授权文件的路径"><span>锐速 授权文件的路径</span></a></li></ul></li></ul></div>
<div class="old-message">本文最后更新于 <a><strong>2017年8月8日 19:35</strong></a> 可能会因为没有更新而失效。如已失效或需要修正,请留言!</div><p>很早就有人想让我写个 锐速的配置参数调整说明之类的教程,但是我对这些也不了解,最近实在没啥教程写,那就研究一下,简单写个文章好了,有错误欢迎指出。</p>
<hr />
<h2 id="安装锐速">安装锐速</h2>
<ul>
<li><a title="优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版) - 逗比根据地" href="gqnmhax9.html" target="_blank">优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版)</a></li>
<li><strong><a title="Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本 - 逗比根据地" href="q7gcd25g.html" target="_blank">Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本</a></strong></li>
</ul>
<p>某种程度上来说,锐速(ServerSpeeder)和LotServer是一样的,相比之下我更推荐后者。</p>
<p>两者安装并不冲突,但是不能同时启动,所以可以两个都安装,然后分别启动来测试区别,虽然我测试没什么区别。</p>
<h3 id="配置文件">配置文件</h3>
<pre class="prettyprint linenums"><strong>ServerSpeeder 打开配置文件:</strong>
vi /serverspeeder/etc/config
<strong>LotServer 打开配置文件:</strong>
vi /appex/etc/config
# vi 打开配置文件后,按 I键 进入编辑模式(注意左下角),然后根据以下说明编辑配置文件,最后按 ESC键 退出编辑模式并输入 :wq 保存并退出。
</pre>
<h2 id="参数说明">参数说明</h2>
<p>可以一些人看到上面几十个参数会很方,不要怕,<strong>大部分参数都是不需要改动的,我们主要修改下面这几个参数即可,其他的参数不用管。</strong></p>
<ol>
<li><a href="0e6gd2jc.html#TCP 加速开关">TCP 加速开关</a></li>
<li><a href="0e6gd2jc.html#高级加速开关">高级加速开关</a></li>
<li><a href="0e6gd2jc.html#高级入向加速开关">高级入向加速开关</a></li>
<li><a href="0e6gd2jc.html#加速接口 上行带宽">加速接口 上行带宽</a></li>
<li><a href="0e6gd2jc.html#加速接口 下行带宽">加速接口 下行带宽</a></li>
<li><a href="0e6gd2jc.html#流量整形开关,配合上行和下行带宽设置开启">流量整形开关,配合上行和下行带宽设置开启</a></li>
<li><a href="0e6gd2jc.html#最大传输模式">最大传输模式</a></li>
<li><a href="0e6gd2jc.html#初始 TCP 发送窗口能够发送的数据包的数量">初始 TCP 发送窗口能够发送的数据包的数量</a></li>
<li><a href="0e6gd2jc.html#slab 缓存缩减开关">slab 缓存缩减开关</a></li>
<li><a href="0e6gd2jc.html#锐速 启动的加速引擎(对应CPU核心)的的个数">锐速 启动的加速引擎(对应CPU核心)的的个数</a></li>
</ol>
<h3 id="示例配置">示例配置</h3>
<p>如果你实在不想一个个参数去研究,那么直接用下面这个示例模板好了。</p>
<pre class="prettyprint linenums">acc="1"
advacc="1"
advinacc="1"
wankbps="1000000"
waninkbps="1000000"
# 这两个参数代表加速宽带为 1Gbps,再加个 0 就是10Gbps了
shaperEnable="1"
maxmode="1"
initialCwndWan="44"
# 这个参数请根据回程延迟修改
</pre>
<p><code> initialCwndWan </code>参数请根据你与VPS的连接延迟(回程,VPS连接你的延迟),<strong>比如 110ms,那么 110/2.5=44,即值为 44</strong> ,自己根据延迟调整。</p>
<hr />
<pre>注意,当你不清楚某些参数该如何修改的时候,请不要修改,避免降低加速效果等情况。</pre>
<p><strong>修改配置文件后需要重启锐速才能生效:</strong></p>
<p><strong>ServerSpeeder:</strong>/serverspeeder/bin/serverSpeeder.sh restart</p>
<p><strong>LotServer:</strong>/appex/bin/serverSpeeder.sh restart</p>
<h3 id="其他说明:">其他说明:</h3>
<p>下面提到的 <strong>有效数据率</strong>指的是,当你的VPS从上行向你发送了100MB大小的文件,你也正常接收到了完整的100MB大小的文件,但是实际流量消耗高于 100MB,假设服务器这次传输上行总共消耗了 120MB流量,那么 <strong>100/12=0.83*100=83%</strong> ,结果是 83%的有效数据率。</p>
<p>在丢包和开启了最大传输模式的时候,会降低有效数据率(但是最大传输模式会增加加速效果)。</p>
<hr />
<h3 id="加速接口">加速接口</h3>
<pre class="prettyprint linenums">accif="eth*"
</pre>
<p>eth* 一般为服务器上对外提供服务的网络接口,例如 eth0, eth1, ... 一般通过<code> ifconfig </code>命令可以看到;</p>
<p>可以同时设定多个接口作为加速接口(接口之间用空格分开),如<code> accif="eth0 eth1"</code>;<strong>默认为"eth0"。</strong></p>
<h3 id="TCP 加速开关">TCP 加速开关</h3>
<pre class="prettyprint linenums">acc="1"
</pre>
<p>设为 1 表示开启 TCP 加速功能;设为 0 表示关闭 TCP 加速功能;<strong>默认为 1 。</strong></p>
<h3 id="高级加速开关">高级加速开关</h3>
<pre class="prettyprint linenums">advacc="1"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能可以得到更好的加速效果,但有可能会造成有效数据率下降;<strong>默认为 1 。</strong></p>
<h3 id="高级入向加速开关">高级入向加速开关</h3>
<pre class="prettyprint linenums">advinacc="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能可以得到更好的流入方向流量加速效果,也就是相对服务器来说的 下行宽带(服务器的入向,就是进来的流量,即下行宽带)。</p>
<h3 id="加速接口 上行带宽">加速接口 上行带宽</h3>
<pre class="prettyprint linenums">wankbps="1000000"
</pre>
<p>指的是从服务器流出到 Internet 的最大带宽,单位为 Kbps,例如服务器所连接的 Internet 带宽为 1G,则设置为 1000000;<strong>默认为 1000000。</strong></p>
<h3 id="加速接口 下行带宽">加速接口 下行带宽</h3>
<pre class="prettyprint linenums">waninkbps="1000000"
</pre>
<p>指的是从 Internet 流入服务器的最大带宽,单位为 Kbps,例如服务器所连接的 Internet 带宽为 1G,则设置为 1000000;<strong>默认为 1000000;</strong></p>
<p><code> wankbps 和 waninkbps </code>的设置一般与实际带宽相同为最理想;如果无法确定实际带宽,一般设置为网卡的最大吞吐能力即可;例如网卡为千兆全双工网卡,则 <code> wankbps 和 waninkbps </code>都设置为 1000000;</p>
<p>当设置过小时,例如实际带宽有 100Mbps,但<code> wankbps 和 waninkbps </code>设置为 10Mbps,则数据流量会被限制在 10Mbps 以内,此时会降低服务器的吞吐。</p>
<h3 id="流量整形开关,配合上行和下行带宽设置开启">流量整形开关,配合上行和下行带宽设置开启</h3>
<pre class="prettyprint linenums">shaperEnable="1"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能,会采用<code> wankbps 以及 waninkbps </code>设置的带宽大小运行;关闭此功能,会根据实时传输自动测算带宽大小;<strong>默认为 1 。</strong></p>
<h3 id="csvmode 拥塞控制模式开关">csvmode 拥塞控制模式开关</h3>
<pre class="prettyprint linenums">csvmode="0" highcsv="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启 tcp 加速后,在某些丢包较大的网络中可能会造成有效数据率下降的问题;此时开启拥塞控制模式,可以有效避免该问题;但开启此选项时,可能加速效果也会下降;<strong>默认为 0;</strong></p>
<p><code> csvmode="1" highcsv="0" </code>时,为普通拥塞控制模式;对拥塞具有一定控制的同时对加速效果的影响较小;</p>
<p><code> csvmode="1" highcsv="1" </code>时,为高级拥塞控制模式,可以更好的控制拥塞但是相比于普通拥塞控制模式对加速效果的影响较大。</p>
<h3 id="局域网加速开关">局域网加速开关</h3>
<pre class="prettyprint linenums">subnetAcc="0"
</pre>
<p>设为 1 表示开启;设为 0 表示关闭;</p>
<p>不开启时对于同一局域网内的连接不会加速;开启后对同一网段的 TCP 连接也进行加速;<strong>默认为 0 。</strong></p>
<h3 id="最大传输模式">最大传输模式</h3>
<pre class="prettyprint linenums">maxmode="0"
</pre>
<p>设为 1 表示开启;设为 0 表示关闭;</p>
<p>开启后会进一步提高加速效果,但是可能会降低有效数据率;<strong>默认为 0 。</strong></p>
<h3 id="最大传输模式生效时间">最大传输模式生效时间</h3>
<pre class="prettyprint linenums">maxTxEffectiveMS="0"
</pre>
<p>用于控制最大传输模式对每一个连接的生效时间;设为 0 表示从连接建立到连接结束,都采用最大传输模式传输;单位为 ms,1000 即 1s ;<strong>默认为 0 。</strong></p>
<h3 id="抓包功能开关">抓包功能开关</h3>
<pre class="prettyprint linenums">pcapEnable="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能后会抓取经过加速引擎处理的数据包,在<code> /serverspeeder/log(或/appex/log) </code>目录下生成抓包文件,此功能会造成大量日志文件,如开启请定期清理日志,避免硬盘爆炸;<strong>默认为 0 。</strong></p>
<h3 id="流量 bypass 开关">流量 bypass 开关</h3>
<pre class="prettyprint linenums">bypassOverFlows="1"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能后当服务器的连接数超过引擎设定后会对超过的连接的流量 bypass,否则会无法新建连接;<strong>默认为 1 。</strong></p>
<h3 id="初始 TCP 发送窗口能够发送的数据包的数量">初始 TCP 发送窗口能够发送的数据包的数量</h3>
<pre class="prettyprint linenums">initialCwndWan="44"
</pre>
<p>该值合理设置会获得更好的加速效果,如果设置相对实际需求偏高,但是可能会造成网络的拥塞;</p>
<p>根据延迟来设定是最好的,假设你与这个VPS延迟(回程延迟)为 110ms,那么除以 2.5,即可得到 44。</p>
<h3 id="从 LAN 到 WAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限">从 LAN 到 WAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限</h3>
<pre class="prettyprint linenums">l2wQLimit="256 2048"
</pre>
<p>该值设置的高会获得更好的加速效果,但是会消耗更多的内存;</p>
<p>256代表256MB内存,2048代表256MB内存*8 。</p>
<h3 id="从 WAN 到 LAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限;">从 WAN 到 LAN 加速引擎在缓冲池充满和空闲时分别能够缓存的数据包队列的长度的上限;</h3>
<pre class="prettyprint linenums">w2lQLimit="256 2048"
</pre>
<p>该值设置的高会获得更好的加速效果,但是会消耗更多的内存。</p>
<p>256代表256MB内存,2048代表256MB内存*8 。一般<code> l2wQLimit 和 w2lQLimit </code>设置一样即可。</p>
<h3 id="slab 缓存缩减开关">slab 缓存缩减开关</h3>
<pre class="prettyprint linenums">shrinkPacket="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>当服务器内存消耗很高时可以将该值设定为 1,这样会降低内存的消耗,对低内存的VPS效果不错;<strong>默认为 0 。</strong></p>
<h3 id="重传等待时间">重传等待时间</h3>
<pre class="prettyprint linenums">retranWaitListMS="32
</pre>
<p>当服务器没有收到 ack 或者丢包产生之后客户端重复 ack 时间达 到 32ms,服务器重传数据;默认为 32ms.</p>
<h3 id="网络拥塞判断">网络拥塞判断</h3>
<pre class="prettyprint linenums">halfCwndMinSRtt="500"
halfCwndLossRateShift="3"
</pre>
<p>两个值分别为延时和丢包率,丢包率默认值为 3,即 1/2^3。</p>
<p>当拥塞产生时,退出第三代 Learning-based TCP 算法,采用类似传统 TCP 的 算法。</p>
<h3 id="双边缓存设置">双边缓存设置</h3>
<pre class="prettyprint linenums">#byte cache
byteCache="0"
httpComp="1"
byteCacheMemory="250" #MB
byteCacheDisk="0" #MB
diskDev="/dev/sda2"
</pre>
<p>当前只有部分版本支持该功能;</p>
<p>分别是缓存开关,数据压缩开关,内存大小,硬盘大小,指定硬盘位置;</p>
<h3 id="仅处理TCP流量">仅处理TCP流量</h3>
<pre class="prettyprint linenums">tcpOnly="1"</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>开启此功能,即只处理 TCP 流量;关闭此功能,即一起处理除 TCP 以外的流量(不会对非 TCP 流量加速),一般用于配置策略对非 TCP 数据丢弃时;<strong>默认为 1 。</strong></p>
<h3 id="引擎允许的最大突发时间">引擎允许的最大突发时间</h3>
<pre class="prettyprint linenums">SmBurstMS="15"
</pre>
<p>设为 0,则代表关闭;该值越大,数据包发送量越大;<strong>当前推荐默认为 15 。</strong></p>
<h3 id="网卡接收端合并开关">网卡接收端合并开关</h3>
<pre class="prettyprint linenums">rsc="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>在有些较新的网卡驱动中,带有 RSC 算法的,需要打开该功能;<strong>默认为 0 。</strong></p>
<h3 id="GSO 开关">GSO 开关</h3>
<pre class="prettyprint linenums">gso="0"
</pre>
<p>设为 1 表示开启,设为 0 表示关闭;</p>
<p>当网卡需要开启 gso 功能时,开启此功能,锐速 变为支持 gso 的模式;关闭此功能,如果网卡开启 gso,锐速 会关闭网卡的 gso 功能;<strong>默认为 0 。</strong></p>
<h3 id="lanSegment 开关">lanSegment 开关</h3>
<pre class="prettyprint linenums">lanSegment=""
</pre>
<p>当 锐速 不是 TCP 连接的最终节点并且采用单臂模式部署时,如果 锐速 和服务器之间网络环境很好,不需要加速,将此参数的值设为 Lan 一侧的子网网段 (参数的值为子网网段的十六进制表示加子网掩码,例:ip 为 172.33.0.0/16,lanSegment="AC210000/16"),则 锐速 和服务器之间不进行加速,可以节省 serverSpeeder 使用的资源并获得更好的加速效果。</p>
<p>如果不设置此参数,则 锐速 会对所有经过的 TCP 连接进行加速。(注:如果参数转换为十六进制后,第一位数字为 0 时,需要省略,不然无法正常写入配置。例如,参数十六进制值为:0C210000/16,那么 lanSegment="C210000/16".)</p>
<h3 id="启动锐速时 写入配置所需时间">启动锐速时 写入配置所需时间</h3>
<pre class="prettyprint linenums">configTimeout="30"</pre>
<p>当引擎的数目很多时需要写入配置的时间较长,<strong>默认为 30s 。</strong></p>
<h3 id="锐速 启动的加速引擎(对应CPU核心)的的个数">锐速 启动的加速引擎(对应CPU核心)的的个数</h3>
<pre class="prettyprint linenums">engineNum="0"
</pre>
<p>在多处理器(核)的系统环境下,启用多个加速引擎可以使网络流量的负载在多个处理器(核)之间做均衡分配,从而帮助优化系统 CPU 资源的利用;</p>
<p>启用多个加速引擎时,引擎序号从 0 开始,分别为 engine0,engine1,engine2,等等;每个引擎的负载对应交给相同序号的处理器来处理,即 engine0 使用 cpu0,engine1 使用 cpu1 等;engineNum 默认为 0,表示启用的加速引擎个数与系统的处理器个数相同,64bit 架构下,当实际的 engineNum 参数大于 4 时,检查内存:</p>
<p><strong>当总内存减去 engine 占用内存剩余数小于 2G 时,提示用户一个 warning:</strong></p>
<pre>LotServer Warning: $CPUNUM engines will be launched according to the config file. Your system's total RAM is $memTotal(KB), which might be insufficient to run all the engines without performance penalty under extreme network conditions.</pre>
<h3 id="白名单开关">白名单开关</h3>
<pre class="prettyprint linenums">shortRttMS="10"
</pre>
<p>打开后 锐速 将不对 RTT 小于 shortRttMS 的连接加速,节约系统资源,提高性能;</p>
<p>设置为 0 时表示关闭此功能,锐速 会加速所有的连接;设置为其他值时,例如 10,则表示当第一次建立连接时,锐速 会测量所有的新建连接的 RTT,但是不对其进行加速;如果 RTT 大于 10ms,锐速 会从第二次建立连接开始对其加速,如果 RTT 小于 10ms,锐速 则一直不会对其加速。默认值 10ms.</p>
<p>重启 锐速 后,原来记录的每个连接的 RTT 会被清除,重新开始记录。</p>
<p>锐速 使用五元组判断是否为同一连接,五元组包括:源 IP, 目的 IP, 源端口,目的端口和协议。</p>
<h3 id="锐速 模块文件的路径">锐速 模块文件的路径</h3>
<pre class="prettyprint linenums">apxexe="/appex/bin/acce-***"
</pre>
<h3 id="锐速 授权文件的路径">锐速 授权文件的路径</h3>
<pre class="prettyprint linenums">apxlic="/appex/etc/apx-***.lic"
</pre>
<hr />
<p><strong>锐速的详细介绍和原理等看这里:<a href="https://github.com/0oVicero0/serverSpeeder_Install/blob/master/lotServer.pdf" target="_blank">https://github.com/0oVicero0/serverSpeeder_Install/blob/master/lotServer.pdf</a></strong></p>
<p><pre style="border-left: solid 4px #1abc9c;"><strong>转载请超链接注明:</strong><a href="index.html">逗比根据地</a> » <a href="0e6gd2jc.html">锐速(ServerSpeeder/LotServer)配置参数简单说明,合理修改配置 提高加速效果</a></pre><pre><strong>责任声明:</strong>本站一切资源仅用作交流学习,请勿用作商业或违法行为!如造成任何后果,本站概不负责!</pre></p>
<div class="article-social">
<a href="javascript:;" data-action="ding" data-id="2173" id="Addlike" class="action"><i class="fa fa-thumbs-o-up"></i>赞 (<span class="count">34</span>)</a></div>
</article>
<footer class="article-footer">
<div class="article-tags"><i class="fa fa-tags"></i><a href="xvyd07yk.html" rel="tag">lotserver</a><a href="3belnpf8.html" rel="tag">ServerSpeeder</a><a href="z5xlbkji.html" rel="tag">锐速</a></div></footer>
<nav class="article-nav">
<span class="article-nav-prev"><i class="fa fa-angle-double-left"></i> <a href="9-b8lkgt-5.html" rel="prev">ShadowsocksR 推出 新协议“无加密”新玩法 [ auth_chain_a + none ]</a></span>
<span class="article-nav-next"><a href="3--didfb-4.html" rel="next">Debian 编译安装 SNI Proxy 反向代理教程(可用于Hosts/DNS服务器)</a> <i class="fa fa-angle-double-right"></i></span>
</nav>
<div class="related_top">
<div class="related_posts"><ul class="related_img">
<li class="related_box" >
<a href="8hzuha81.html" title="Debian/Ubuntu 内核降级教程 —— 降低(BBR)为支持锐速的内核版本" target="_blank">
<img src="3i3cu8g3.png?src=https://doub.io/wp-content/uploads/linux-1.png&h=110&w=185&q=90&zc=1&ct=1" alt="Debian/Ubuntu 内核降级教程 —— 降低(BBR)为支持锐速的内核版本" /> <br><span class="r_title">Debian/Ubuntu 内核降级教程 —— 降低(BBR)为支持锐速的内核版本</span></a>
</li>
<li class="related_box" >
<a href="q7gcd25g.html" title="Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本" target="_blank">
<img src="aca2koxg.png?src=https://doub.io/wp-content/uploads/tcp01.png&h=110&w=185&q=90&zc=1&ct=1" alt="Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本" /> <br><span class="r_title">Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本</span></a>
</li>
<li class="related_box" >
<a href="0e6gd2jc-2.html" title="比锐速还强的 TCP拥塞控制技术 —— TCP-BBR 测试及开启教程" target="_blank">
<img src="aca2koxg.png?src=https://doub.io/wp-content/uploads/tcp01.png&h=110&w=185&q=90&zc=1&ct=1" alt="比锐速还强的 TCP拥塞控制技术 —— TCP-BBR 测试及开启教程" /> <br><span class="r_title">比锐速还强的 TCP拥塞控制技术 —— TCP-BBR 测试及开启教程</span></a>
</li>
<li class="related_box" >
<a href="gqnmhax9.html" title="优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版)" target="_blank">
<img src="a0gosj5p.png?src=https://doub.io/wp-content/uploads/vpn1.png&h=110&w=185&q=90&zc=1&ct=1" alt="优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版)" /> <br><span class="r_title">优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版)</span></a>
</li>
</ul>
<div class="relates">
<ul>
<li><i class="fa fa-minus"></i><a href="8hzuha81.html">Debian/Ubuntu 内核降级教程 —— 降低(BBR)为支持锐速的内核版本</a></li><li><i class="fa fa-minus"></i><a href="q7gcd25g.html">Linux TCP加速工具 —— LotServer(锐速母公司) 一键安装脚本</a></li><li><i class="fa fa-minus"></i><a href="0e6gd2jc-2.html">比锐速还强的 TCP拥塞控制技术 —— TCP-BBR 测试及开启教程</a></li><li><i class="fa fa-minus"></i><a href="gqnmhax9.html">优秀的VPS TCP加速软件 —— 一键锐速安装脚本(开心版)</a></li><li><i class="fa fa-minus"></i><a target="_blank" href="k71l4klb.html">网页管理 <strong>Brook、SS、Socks5</strong> 代理账号 —— Brook-Web 使用教程</a></li><li><i class="fa fa-minus"></i><a target="_blank" href="uispwf33.html">DAZE 轻量化代理软件 —— Windows 客户端简单使用教程</a></li><li><i class="fa fa-minus"></i><a target="_blank" href="ro0sse7s.html">一个由Go语言编写的轻量化代理工具 —— DAZE 服务端手动教程</a></li><li><i class="fa fa-minus"></i><a target="_blank" href="wlqx27bd.html">GoFlyway 基础教程:Android 客户端使用方法</a></li>
</ul></div></div> </div>
<div id="respond" class="no_webshot">
<form action="https://doub.io/pl-doubi.php" method="post" id="commentform">
<div class="comt-title">
<div class="comt-author pull-left">
发表我的评论 </div>
<a id="cancel-comment-reply-link" class="pull-right" href="javascript:;">取消评论</a>
</div>
<div class="comt">
<div class="comt-box">
<textarea placeholder="本站所有评论均会审核,因缓存原因,审核中的评论刷新页面后就会不显示,请知晓勿重发。" class="input-block-level comt-area" name="comment" id="comment" cols="100%" rows="3" tabindex="1" onkeydown="if(event.ctrlKey&&event.keyCode==13){document.getElementById('submit').click();return false};"></textarea>
<div class="comt-ctrl">
<button class="btn btn-primary pull-right" type="submit" name="submit" id="submit" tabindex="5"><i class="fa fa-check-square-o"></i> 提交评论</button>
<div class="comt-tips pull-right"><input type='hidden' name='comment_post_ID' value='2173' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</div>
<span data-type="comment-insert-smilie" class="muted comt-smilie"><i class="fa fa-smile-o"></i> 表情</span>
<span class="muted comt-mailme"><label for="comment_mail_notify" class="checkbox inline" style="padding-top:0"><input type="checkbox" name="comment_mail_notify" id="comment_mail_notify" value="comment_mail_notify" checked="checked"/>有人回复时邮件通知我</label></span>
</div>
</div>
<div class="comt-comterinfo" id="comment-author-info" >
<h4>Hi,您需要填写昵称和邮箱!</h4>
<ul>
<li class="form-inline"><label class="hide" for="author">昵称</label><input class="ipt" type="text" name="author" id="author" value="" tabindex="2" placeholder="昵称"><span class="help-inline">昵称 (必填)</span></li>
<li class="form-inline"><label class="hide" for="email">邮箱</label><input class="ipt" type="text" name="email" id="email" value="" tabindex="3" placeholder="邮箱"><span class="help-inline">邮箱 (必填)</span></li>
<li class="form-inline"><label class="hide" for="url">网址</label><input class="ipt" type="text" name="url" id="url" value="" tabindex="4" placeholder="网址"><span class="help-inline">网址</span></li>
</ul>
</div>
</div>
</form>
</div>
<div style="display: block;">
<div id="postcomments">
<div id="comments">
<i class="fa fa-comments-o"></i> <b> (25)</b>个小伙伴在吐槽
</div>
<ol class="commentlist">
<li class="comment even thread-even depth-1" id="comment-43086"><div class="c-avatar"><div class="c-main" id="div-comment-43086">Toyo大佬,想问一下128m的机子装锐速和ssr,长时间看油管1080p视频没问题,可是只要测速(多线程)大流量就会死机,这种情况可以改善吗?系统是debian7×32,用您的ssr脚本限速也没法解决真不知道咋办。谢谢大佬!<div class="c-meta"><span class="c-author">OkOk</span>2018-09-12 08:20 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=43086#respond' onclick='return addComment.moveForm( "div-comment-43086", "43086", "respond", "2173" )' aria-label='回复给OkOk'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor odd alt depth-2" id="comment-43088"><div class="c-avatar"><div class="c-main" id="div-comment-43088">是CPU满了导致出问题,还是内存满了导致出问题?<br />
首先锐速对内存要求较高(处理加速的流量越大,内存占用越高),你这点内存建议用 BBR。<br />
而SSR的协议插件对CPU要求很高(协议越新 CPU要求越高),流量越大,CPU占用就会越高。<br />
另外,如果你在下载一个文件时,SSR服务端下载文件到服务器的速度远高于服务器上传给你的速度,那么这期间的速度差产生的文件就会暂时存在内存中,这会对内存有较大影响,128MB内存还是太小了。<br />
看 Youtube 没事很正常,因为 Youtube 是分段加载的,一段一段的,而且 1080P的视频也并不大,只需要 500KB/s的速度就能看 1080P的视频了,自然没什么影响。<br />
既然能装锐速,那么说明你的服务器是 KVM XEN 之类的系统。<br />
如果你是CPU占用过高导致的问题,那么我可以教你如何限制SSR进程的CPU使用率。<br />
如果你是内存占用过高导致的问题(因为上传下载速度差),那么我可以教你限制网卡速度,平衡上传下载速度,就能尽量避免内存爆炸的问题。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2018-09-12 10:24 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=43088#respond' onclick='return addComment.moveForm( "div-comment-43088", "43088", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div><ul class="children">
<li class="comment even depth-3" id="comment-43094"><div class="c-avatar"><div class="c-main" id="div-comment-43094">非常感谢大佬这么详尽的解释!我也因此大致上明白问题所在了,应该是内存占用过高导致的。我看了下vps商后台流量统计图表,测速时incoming远远大于outcoming;而且top查了一下ssr占用的cpu貌似也不高,最多就到3%左右。希望您能讲解一下怎么限制网卡速度,大概网速只要能限制在1.5m/s以下就行,系统是debian7×32KVM。PS:装锐速前试装过bbr,可是安装内核后就重启不了了233就放弃了<div class="c-meta"><span class="c-author">OkOk</span>2018-09-12 12:35 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=43094#respond' onclick='return addComment.moveForm( "div-comment-43094", "43094", "respond", "2173" )' aria-label='回复给OkOk'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor odd alt depth-4" id="comment-43104"><div class="c-avatar"><div class="c-main" id="div-comment-43104"><pre class="prettyprint linenums" ># 安装限速网卡程序
apt-get install wondershaper -y
# 格式介绍
wondershaper 网卡 下载 上传
# 格式示例
wondershaper eth0 20480 20480
# 这个程序的限速单位换算很迷,可能是因为限速不太准确的原因吧。这两个 20480 指的是上传下载大概限速到 3.X MB/s的速度,不过具体你自行测试吧
# eth0 是你的网卡,该程序会限速整个网卡的速度,ifconfig 可以查看网卡信息。
# 清空限速
wondershaper clear eth0
</pre><div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2018-09-12 15:58 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=43104#respond' onclick='return addComment.moveForm( "div-comment-43104", "43104", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div><ul class="children">
<li class="comment even depth-5" id="comment-43121"><div class="c-avatar"><div class="c-main" id="div-comment-43121">哇限制完网卡速度就真的不会死机了,万分感谢!!<div class="c-meta"><span class="c-author">OkOk</span>2018-09-12 20:51 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=43121#respond' onclick='return addComment.moveForm( "div-comment-43121", "43121", "respond", "2173" )' aria-label='回复给OkOk'>回复</a></div></div></div></li><!-- #comment-## -->
<li class="comment odd alt depth-5" id="comment-44755"><div class="c-avatar"><div class="c-main" id="div-comment-44755">Toyo大佬教我限制cpu使用率吧,好不好 <img data-original="https://doub.io/wp-content/themes/yusi1.0/img/smilies/icon_lol.gif" alt=":lol:" class="wp-smiley" style="height: 1em; max-height: 1em;" /><div class="c-meta"><span class="c-author">尘埃</span>2018-10-21 10:47 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=44755#respond' onclick='return addComment.moveForm( "div-comment-44755", "44755", "respond", "2173" )' aria-label='回复给尘埃'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-6" id="comment-44760"><div class="c-avatar"><div class="c-main" id="div-comment-44760">参考这个评论:<a href="auk1cxbq.html#comment-41161" target="_blank">https://doub.io/sszhfx/comment-page-53/#comment-41161</a><div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2018-10-21 13:26 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=44760#respond' onclick='return addComment.moveForm( "div-comment-44760", "44760", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-31628"><div class="c-avatar"><div class="c-main" id="div-comment-31628">修改之后提示:E45: 'readonly' option is set (add ! to override),这个什么意思呀<div class="c-meta"><span class="c-author">545345</span>2018-02-18 11:35 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=31628#respond' onclick='return addComment.moveForm( "div-comment-31628", "31628", "respond", "2173" )' aria-label='回复给545345'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-31642"><div class="c-avatar"><div class="c-main" id="div-comment-31642">文件为只读,要保存请输入<code> :wq! </code>并回车。加上叹号 ! 代表强制执行。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2018-02-18 13:27 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=31642#respond' onclick='return addComment.moveForm( "div-comment-31642", "31642", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-25259"><div class="c-avatar"><div class="c-main" id="div-comment-25259">【如果你实在不想一个个参数去研究,那么直接用下面这个示例模板好了】
是不是把里面原始内容清空,再把示例模板复制进去呀<div class="c-meta"><span class="c-author">765745745</span>2017-12-15 22:17 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=25259#respond' onclick='return addComment.moveForm( "div-comment-25259", "25259", "respond", "2173" )' aria-label='回复给765745745'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-25729"><div class="c-avatar"><div class="c-main" id="div-comment-25729">不,配置文件内有很多的配置参数,你需要把配置文件内的这些参数删掉,然后再复制下面的加进去(#井号注释的中文不要复制)。或者你找到对应的参数,改成我实例的参数值。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-12-16 13:47 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=25729#respond' onclick='return addComment.moveForm( "div-comment-25729", "25729", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="comment-17105"><div class="c-avatar"><div class="c-main" id="div-comment-17105">initialCwndWan这个vps回程延时怎么测?<div class="c-meta"><span class="c-author">壮士请留步</span>2017-08-15 09:47 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=17105#respond' onclick='return addComment.moveForm( "div-comment-17105", "17105", "respond", "2173" )' aria-label='回复给壮士请留步'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-17107"><div class="c-avatar"><div class="c-main" id="div-comment-17107">VPS上面 ping你的IP(前提是公网IP),否则你只能找个国内与你相近的公网IP。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-08-15 10:20 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=17107#respond' onclick='return addComment.moveForm( "div-comment-17107", "17107", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div><ul class="children">
<li class="comment odd alt depth-3" id="comment-17115"><div class="c-avatar"><div class="c-main" id="div-comment-17115">经测试ping180,除以2.5大概70左右,发现initialCwndWan改成了70还没有原来44的速度快<div class="c-meta"><span class="c-author">壮士请留步</span>2017-08-15 10:36 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=17115#respond' onclick='return addComment.moveForm( "div-comment-17115", "17115", "respond", "2173" )' aria-label='回复给壮士请留步'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-4" id="comment-17122"><div class="c-avatar"><div class="c-main" id="div-comment-17122">那就改回去吧,没说一定速度快,一般默认就行。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-08-15 11:04 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=17122#respond' onclick='return addComment.moveForm( "div-comment-17122", "17122", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-14927"><div class="c-avatar"><div class="c-main" id="div-comment-14927">大神, 想知道 锐速, kcptun, bbr 等 各种加速有什么区别,哪种效果比较好?<div class="c-meta"><span class="c-author">long</span>2017-06-18 20:41 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=14927#respond' onclick='return addComment.moveForm( "div-comment-14927", "14927", "respond", "2173" )' aria-label='回复给long'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-14932"><div class="c-avatar"><div class="c-main" id="div-comment-14932">锐速、LotServer、BBR都属于TCP拥塞控制,只加速TCP,都是单边加速(只服务器安装)。作用相当于交警和红绿灯,原始TCP拥塞控制相当于一个没有交警和红绿灯的十字路口,车辆少没影响,车辆多的时候都乱插道、乱抢道,导致有限的道路中堵车拥塞,而锐速、LotServer、BBR就交警和红绿灯,就是合理的分配车流量,让同样的道路流量使用更合理,最大化利用车流量。具体哪个效果更换,自行测试,因人而异<br />
而KCPTUN同样也只加速TCP,是双边加速(服务器和本地设备都要安装软件),但是它是把TCP流量转成KCP协议并封装通过UDP协议方式发送,而UDP这玩意有不可靠的传输缺点,特别是国内国外的运营商对UDP都有不同程度的限速或丢包,再加上KCPTUN明面/隐藏参数众多,如果不会调整,那么会浪费3-6倍甚至更多的宽带,比如你下载100M文件,服务器实际消耗300-600M宽带,你本地SSR客户端只接收了100M流量,剩下的都因为配置不合理或运营商对UDP丢包导致消耗浪费了的宽带。正因为KCPTUN相对 锐速、LotServer、BBR 加速效果不一定高,但是一定要更暴力(无论是浪费流量还是占用宽带还是IDC厌恶性等),所以我不做推荐并且也不再更新相关教程。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-06-19 09:04 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=14932#respond' onclick='return addComment.moveForm( "div-comment-14932", "14932", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment byuser comment-author-minamisindery odd alt thread-odd thread-alt depth-1" id="comment-13424"><div class="c-avatar"><div class="c-main" id="div-comment-13424">这里面的配置基本只有最大模式那两个设置有点效果 其它的改不改一个样<div class="c-meta"><span class="c-author"><a href='https://www.nanqinlang.com/' rel='external nofollow' class='url'>南琴浪</a></span>2017-05-03 23:21 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13424#respond' onclick='return addComment.moveForm( "div-comment-13424", "13424", "respond", "2173" )' aria-label='回复给南琴浪'>回复</a></div></div></div><ul class="children">
<li class="comment even depth-2" id="comment-14000"><div class="c-avatar"><div class="c-main" id="div-comment-14000">至少我修改了initialCwndWan值可以吊打bbr了<div class="c-meta"><span class="c-author">kurokitomoko</span>2017-05-21 09:13 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=14000#respond' onclick='return addComment.moveForm( "div-comment-14000", "14000", "respond", "2173" )' aria-label='回复给kurokitomoko'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-13372"><div class="c-avatar"><div class="c-main" id="div-comment-13372">请问Toyo 锐速对ipv6有效吗<div class="c-meta"><span class="c-author">小逗比</span>2017-05-02 22:01 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13372#respond' onclick='return addComment.moveForm( "div-comment-13372", "13372", "respond", "2173" )' aria-label='回复给小逗比'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-13377"><div class="c-avatar"><div class="c-main" id="div-comment-13377">不清楚,没有ipv6 没测试过。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-05-02 23:04 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13377#respond' onclick='return addComment.moveForm( "div-comment-13377", "13377", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
<li class="comment odd alt depth-2" id="comment-13391"><div class="c-avatar"><div class="c-main" id="div-comment-13391">对ipv6没用,只对ipv4有用。
官方回应过,找不到在哪里看到过的了。<div class="c-meta"><span class="c-author">charli</span>2017-05-03 08:38 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13391#respond' onclick='return addComment.moveForm( "div-comment-13391", "13391", "respond", "2173" )' aria-label='回复给charli'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="comment-13363"><div class="c-avatar"><div class="c-main" id="div-comment-13363">如果大家能把自己的参数组合贴出来分享参考下 也很好啊<div class="c-meta"><span class="c-author">K</span>2017-05-02 16:18 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13363#respond' onclick='return addComment.moveForm( "div-comment-13363", "13363", "respond", "2173" )' aria-label='回复给K'>回复</a></div></div></div></li><!-- #comment-## -->
<li class="comment odd alt thread-even depth-1" id="comment-13355"><div class="c-avatar"><div class="c-main" id="div-comment-13355">是否两者都不支持OpenVZ? <img data-original="https://doub.io/wp-content/themes/yusi1.0/img/smilies/icon_lol.gif" alt=":lol:" class="wp-smiley" style="height: 1em; max-height: 1em;" /><div class="c-meta"><span class="c-author">so8610</span>2017-05-02 14:35 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13355#respond' onclick='return addComment.moveForm( "div-comment-13355", "13355", "respond", "2173" )' aria-label='回复给so8610'>回复</a></div></div></div><ul class="children">
<li class="comment byuser comment-author-toyo bypostauthor even depth-2" id="comment-13357"><div class="c-avatar"><div class="c-main" id="div-comment-13357">是。<div class="c-meta"><span class="c-author"><a href='index.html' rel='external nofollow' class='url'>Toyo</a></span>2017-05-02 14:47 <a rel='nofollow' class='comment-reply-link' href='https://doub.io/wlzy-33/?replytocom=13357#respond' onclick='return addComment.moveForm( "div-comment-13357", "13357", "respond", "2173" )' aria-label='回复给Toyo'>回复</a></div></div></div></li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
</ol>
<div class="commentnav" >
</div>
</div>
</div>
</div>
</div>
</div>
<aside class="sidebar">
<div class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div style="position: absolute;left: 4px;top: 4px;font-size: 12px;color: #000;border: 1px solid #000;line-height: 12px;opacity: 0.5;">广告</div>
<a title="特别声明:此图片为广告投放,与本站无任何关系。" target="_blank" href="https://walllink.tw"><img src="2829kfuq.png" /></a></div></div><div class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div style="text-align:center;padding: 10px 20px 5px;display: block;">
<a class="wid-xiaobai" style="background-color: #03A9F4;padding-top:15px;padding-bottom:15px;font-size: 16px;font-weight: bold;" target="_blank" href="dibdjmr6.html">逗比根据地 所有文章教程分类合辑</a>
<a class="wid-xiaobai" style="background-color: #1ABCFF;padding-top: 7px;padding-bottom: 7px;font-weight: bold;font-size: 15px;" target="_blank" href="mc1t27yh.html">CDN 复活被墙IP 继续做代理</a>
<a class="wid-xiaobai" style="background-color: #1ABCFF;padding-top: 7px;padding-bottom: 7px;font-weight: bold;font-size: 15px;" target="_blank" href="s3y0lufe.html">KCP 复活被墙IP 继续做代理</a>
<a class="wid-xiaobai" style="background-color: #1ABCF7;" target="_blank" href="aybh4ww5-2.html">小众轻量代理 Brook 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCED;" target="_blank" href="g4b_0oy6.html">Brook Tools 客户端 使用教程</a>
<a class="wid-xiaobai" style="background-color: #1ABCE9;" target="_blank" href="m2qf_iyd.html">Brook 新手小白 视频使用教程</a>
<a class="wid-xiaobai" style="background-color: #1ABCE7;" target="_blank" href="xcwybsz2.html">小众轻量代理 DAZE 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCE5;" target="_blank" href="ouiwm7ss-2.html">DAZE Tools 客户端 使用教程</a>
<a class="wid-xiaobai" style="background-color: #1ABCE3;" target="_blank" href="juxwmu1i.html">小众轻量代理 Goflyway 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCD9;" target="_blank" href="7btobhno.html">Goflyway Tools 客户端 使用教程</a>
<a class="wid-xiaobai" style="background-color: #1ABCD4;" target="_blank" href="tp_-ic2f.html">虚拟主机搭建 YouTube 私人镜像</a>
<a class="wid-xiaobai" style="background-color: #1ABCCF;" target="_blank" href="z2a4lk3l.html">ShadowsocksR 单用户 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCC5;" target="_blank" href="z2a4lk3l-2.html">ShadowsocksR 多用户 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCBA;" target="_blank" href="3--didfb-2.html">Linux 优化加速技巧 BBR 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCB0;" target="_blank" href="gqnmhax9.html">Linux 优化加速技巧 锐速 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1ABCA6;" target="_blank" href="q7gcd25g.html">Linux 优化加速 LotServer 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #1abc9c;" target="_blank" href="0e6gd2jc.html">锐速 / LotServer 配置参数简单说明</a>
<a class="wid-xiaobai" style="background-color: #E91E77;" target="_blank" href="ouiwm7ss.html">一键搭建最简单网盘 FileManager</a>
<a class="wid-xiaobai" style="background-color: #E91E63;" target="_blank" href="nr2hjmg2.html">Cisco AnyConnect VPN 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #E91E59;" target="_blank" href="tfma58rb.html">Linux封禁垃圾邮件/BT/PT 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #E91E4F;" target="_blank" href="plucovvc.html">VPS 搭建 WordPress 博客 视频教程</a>
<a class="wid-xiaobai" style="background-color: #E91E3B;" target="_blank" href="q7gcd25g-2.html">BT/磁力离线下载神器 Cloud Torrent</a>
<a class="wid-xiaobai" style="background-color: #E91E27;" target="_blank" href="zuigoj__.html">BT/磁力离线下载神器 Aria2 一键脚本</a>
<a class="wid-xiaobai" style="background-color: #2d2d2d;" target="_blank" href="bqjxhzxr.html">PayPal 更换汇率结算方式降低手续费</a>
</div></div></div><div class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div style="background-color: #eee;">
<div style="position: absolute;margin-left: 4px;margin-top: 4px;font-size: 12px;color: #000;border: 1px solid #000;line-height: 12px;opacity: 0.5;">广告</div>
<a title="特别声明:此图片为广告投放,与本站无任何关系。" target="_blank" href="https://kanfanba.com/"><img style="margin-bottom: 10px;" src="7komc_m0.png"/></a>
<div style="position: absolute;margin-left: 4px;margin-top: 4px;width: 24px;font-size: 12px;color: #000;border: 1px solid #000;line-height: 12px;opacity: 0.5;">广告</div>
<div id="guangg_image"></div>
<script type="text/javascript">
var image_url=new Array()
image_url=["https://www.vultr.com/","vh8576m0.html","https://virmach.com/"]
var guangg_url=new Array()
guangg_url=["2ggwga1a.png","hpvcwrn6.png","ivndglg6.png"]
guangg_id=Math.floor(Math.random()*3)
imageurl = image_url[guangg_id]
guanggurl = guangg_url[guangg_id]
document.getElementById("guangg_image").innerHTML = "<a target=\"_blank\" title=\"特别声明:此图片为广告投放,与本站无任何关系。\" href="+imageurl+">"+"<img src="+guanggurl+" /></a>";
</script>
</div></div></div><div class="widget_text widget widget_custom_html"><div class="title"><h2>原创の更新</h2></div><div class="textwidget custom-html-widget"><div class="hot-posts">
<ul>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/11/10</span></p>
<span class="label label-1">v1.0.1</span>
<a target="_blank" href="es5fj9se.html" title="点击进入该文件的介绍页面。">MTProxy_go.sh</a><img style="margin-left: 5px;margin-bottom: 4px;" src="aabmo546.gif"/>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/11/10</span></p>
<span class="label label-2">v1.0.8</span>
<a target="_blank" href="939koj07-2.html" title="点击进入该文件的介绍页面。">MTProxy.sh</a><img style="margin-left: 5px;margin-bottom: 4px;" src="aabmo546.gif"/>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/11/07</span></p>
<span class="label label-3">v1.0.0</span>
<a target="_blank" href="kd691l4o.html" title="点击进入该文件的介绍页面。">ss-go.sh</a><img style="margin-left: 5px;margin-bottom: 4px;" src="aabmo546.gif"/>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/11/02</span></p>
<span class="label label-4">v1.0.4</span>
<a target="_blank" href="aybh4ww5.html" title="点击进入该文件的介绍页面。">Gfw_push.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/29</span></p>
<span class="label label-5">v1.0.0</span>
<a target="_blank" href="es5fj9se.html" title="点击进入该文件的介绍页面。">MTProxy_go.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/29</span></p>
<span class="label label-5">v1.0.3</span>
<a target="_blank" href="aybh4ww5.html" title="点击进入该文件的介绍页面。">Gfw_push.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/25</span></p>
<span class="label label-5">v1.0.2</span>
<a target="_blank" href="aybh4ww5.html" title="点击进入该文件的介绍页面。">Gfw_push.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/25</span></p>
<span class="label label-5">v1.0.1</span>
<a target="_blank" href="aybh4ww5.html" title="点击进入该文件的介绍页面。">Gfw_push.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/25</span></p>
<span class="label label-5">v1.0.0</span>
<a target="_blank" href="aybh4ww5.html" title="点击进入该文件的介绍页面。">Gfw_push.sh</a>
</li>
<li>
<p><span class="post-comments"><i class="fa fa-clock-o"></i>2018/10/21</span></p>
<span class="label label-5">v1.0.0</span>
<a target="_blank" href="ouiwm7ss-2.html" title="点击进入该文件的介绍页面。">DAZE Tools</a>
</li>
</ul>
</div></div></div><div class="widget d_tag"><div class="title"><h2>逗比の标签</h2></div><div class="d_tags"><a title="60个话题" target="_blank" href="oyjpgxqd.html">Shadowsocks (60)</a><a title="47个话题" target="_blank" href="meyy1poe.html">脚本 (47)</a><a title="45个话题" target="_blank" href="4y92q0ka.html">教程 (45)</a><a title="32个话题" target="_blank" href="g6hfu0lq.html">ShadowsocksR (32)</a><a title="30个话题" target="_blank" href="sgi86h8e.html">科学上网 (30)</a><a title="20个话题" target="_blank" href="8jt8-s05.html">shell (20)</a><a title="19个话题" target="_blank" href="tjolx2iu.html">VPS (19)</a><a title="18个话题" target="_blank" href="-hbe9vty.html">Linux (18)</a><a title="16个话题" target="_blank" href="cxrndpz0.html">VPN (16)</a><a title="11个话题" target="_blank" href="jeptq9ir.html">BT (11)</a><a title="10个话题" target="_blank" href="4tdyvzjl.html">磁力链接 (10)</a><a title="9个话题" target="_blank" href="xyx3p-8d.html">原创软件 (9)</a><a title="9个话题" target="_blank" href="4_30fwtg.html">端口转发 (9)</a><a title="9个话题" target="_blank" href="f5sdy8y0.html">百度云 (9)</a><a title="9个话题" target="_blank" href="nhe7u58y.html">Brook (9)</a><a title="8个话题" target="_blank" href="_2p4tau_.html">国内中转 (8)</a><a title="8个话题" target="_blank" href="7-nhh6os.html">反向代理 (8)</a><a title="8个话题" target="_blank" href="861-ooh8.html">百度网盘 (8)</a><a title="7个话题" target="_blank" href="yx4tsq_0.html">GoFlyway (7)</a><a title="7个话题" target="_blank" href="esul7bla.html">搬瓦工 (7)</a></div></div></aside></section>
<footer class="footer">
<div class="footer-inner">
<div class="copyright pull-left">
<a href="index.html" title="逗比根据地">逗比根据地</a> 版权所有,保留一切权利 · 基于 <a href="https://cn.wordpress.org/" target="_blank">WordPress</a> · <a href="vjer8vlp.html" target="_blank">欲思主题</a> © 2015-2018 </div>
<div class="trackcode pull-right">
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "bk2yhbv_.js?8067e5ade532c4f3711b320f1e88f213";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-72227254-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-72227254-1');
</script> </div>
</div>
</footer>
<div class="ik36f6a-container ik36f6a-1 ik36f6a-hide">
<div class="ik36f6a-body">
<span class="close-btn fa fa-times-circle"> </span>
<div class="ik36f6a"></div>
</div>
</div><script type='text/javascript' src='s5igkt3b.js?ver=1.0'></script>
<script type='text/javascript' src='2hrvdolu.js?ver=4.8.1'></script>
<script type="text/javascript">
var open = false;
$(function () {
$("button[data-type='Widescreen']").on("click", function () {
if (!open) {
$(".sidebar").hide(); $(".content").animate({ marginRight: 0 }, 200);
} else {
$(".sidebar").show(); $(".content").animate({ marginRight: 370 }, 200);
}