<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>超级火箭</title><link>https://www.superrocket.net/</link><description>SuperRocket, YES!</description><item><title>Centos7下使用ffmpeg转推Youtube直播到其他直播平台</title><link>https://www.superrocket.net/jishu/22.html</link><description>&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;使用CentOS 7，以及ffmpeg，youtube-dl之类的工具，&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;可以截取youtube的直播转播到bilibili上，当然也可以把视频推流到Youtube。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;购买一个国外的VPS，系统选CentOS 7，使用ssh连接，比如xshell工具，登录root账号。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;安装bbr，安装完成后需要重启。&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;wget&amp;nbsp;--no-check-certificate&amp;nbsp;https://github.com/teddysun/across/raw/master/bbr.sh
chmod&amp;nbsp;+x&amp;nbsp;bbr.sh
./bbr.sh&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;更新系统&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;yum&amp;nbsp;update&amp;nbsp;-y&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;安装下面这一堆东西&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;yum&amp;nbsp;install&amp;nbsp;-y&amp;nbsp;epel-release
yum&amp;nbsp;install&amp;nbsp;python3-pip
pip3&amp;nbsp;install&amp;nbsp;you-get
pip3&amp;nbsp;install&amp;nbsp;streamlink
pip3&amp;nbsp;install&amp;nbsp;--upgrade&amp;nbsp;streamlink
pip3&amp;nbsp;install&amp;nbsp;--upgrade&amp;nbsp;yt-dlp
pip3&amp;nbsp;install&amp;nbsp;--upgrade&amp;nbsp;youtube-dl
yum&amp;nbsp;install&amp;nbsp;screen
yum&amp;nbsp;-y&amp;nbsp;install&amp;nbsp;python-pip&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;安装FFmpeg&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;接下来简单说一下把youtube视频推流到bilibili或者其他直播平台的方法&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;流程，使用youtube-dl获取youtube直播的m3u8地址，然后使用ffmpeg推流到bilibili服务器，或者其他服务器，一个道理&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;因为ssh窗口是那种一次性的，就是开着ssh窗口的时候能直播，关了窗口直播就停了，所以就需要用screen的功能开启可以后台的ssh窗口，这个大家应该都知道&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;创建一个叫mfpud的可以后台的ssh窗口&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;screen&amp;nbsp;-S&amp;nbsp;mfpud&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;读取&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;screen&amp;nbsp;-r&amp;nbsp;mfpud&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;获取youtube直播的m3u8直播流&lt;/span&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;格式：youtube-dl -g 直播间地址&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;youtube-dl&amp;nbsp;-g&amp;nbsp;https://www.youtube.com/channel/UC7QVieoTCNwwW84G0bddXpA/live&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #34495E; font-family: Lato, sans-serif; font-size: 15px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;只要频道正在直播，就可以得到一个m3u8的地址，然后使用ffmpeg推流就可以&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ffmpeg -i m3u8地址 -c:v copy -c:a aac -b:a 320k -ar 44100 -bufsize 1 -strict -2 -f flv &amp;quot;推流地址&amp;quot;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;其中推流地址，每个平台都不一样，需根据实际情况。有的网站是这种rtmp://域名/xxx/密钥&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 10px; line-height: 1.8; overflow-wrap: break-word; color: rgb(52, 73, 94); font-family: Lato, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;比如这样，自行修改为你的地址&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;ffmpeg&amp;nbsp;-i&amp;nbsp;https://manifest.googlevideo.com/api/manifest/hls_playlist/expire/1616249662/ei/3q5VYLCCEdfbkgarrY3wCg/ip/207.246.105.25/id/-8XZZjd3PY0.1/itag/301/source/yt_live_broadcast/requiressl/yes/ratebypass/yes/live/1/sgoap/gir%3Dyes%3Bitag%3D140/sgovp/gir%3Dyes%3Bitag%3D299/hls_chunk_host/r6---sn-a5meknek.googlevideo.com/vprv/1/playlist_type/LIVE/initcwndbps/4970/mh/2P/mm/44/mn/sn-a5meknek/ms/lva/mv/m/mvi/6/pl/23/dover/11/keepalive/yes/fexp/24001373,24007246/mt/1616227701/sparams/expire,ei,ip,id,itag,source,requiressl,ratebypass,live,sgoap,sgovp,vprv,playlist_type/sig/AOq0QJ8wRgIhAPbG0tL_kJGMTjBOpeJUrW_CB8MgsB-7tpjqhmLZD7vNAiEAqBMH2CKn6wZbgfv1W07DFiodPIeNnXk4y-TThQyiRHc%3D/lsparams/hls_chunk_host,initcwndbps,mh,mm,mn,ms,mv,mvi,pl/lsig/AG3C_xAwRAIgBTAL8r2Gja5TInn8kYDgdK0QxnKTEutzcSzat_eMPlcCIDMZtwft-AM2LZJOELqw-XIYTMXCpye3mzYRGNYp0Rfq/playlist/index.m3u8
&amp;nbsp;-c:v&amp;nbsp;copy&amp;nbsp;-c:a&amp;nbsp;aac&amp;nbsp;-b:a&amp;nbsp;320k&amp;nbsp;-ar&amp;nbsp;44100&amp;nbsp;-bufsize&amp;nbsp;1&amp;nbsp;-strict&amp;nbsp;-2&amp;nbsp;-f&amp;nbsp;flv&amp;nbsp;&amp;quot;rtmp://live-push.bilivideo.com/live-bvc/?streamname=live_1369556_4527877&amp;amp;key=62633b796d2a1dfb3dhdf7676243ae68&amp;amp;schedule=rtmp&amp;quot;&lt;/pre&gt;&lt;p&gt;完成&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 16 May 2022 09:57:09 +0800</pubDate></item><item><title>Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流</title><link>https://www.superrocket.net/jishu/21.html</link><description>&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;Youtube 直播如何设置？今天教大家利用 V2ray+proxifier 实现 Youtube 油管直播推流。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;一、需要用到的软件：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;1、V2ray，代理通道，是实现直播的基础；&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;2、Proxifier，将数据转化为真全局代理，更好地将直播推流数据转发给 V2ray，实现高速转发数据；&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;3、obs，Youtube 直播录制软件，开源免费，官网推荐，下载详见：https://obsproject.com/&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;二、安装基础软件：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;1、确保 V2ray 能正常使用，即能保证谷歌浏览器(Chrome)能访问外网；&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;2、安装 Proxifier，软件下载及破解注册码：https://www.789ccc.xyz/?p=540&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;L6Z8A-XY2J4-BTZ3P-ZZ7DF-A2Q9C（Portable Edition）&amp;nbsp; （可用，已测试）&lt;br/&gt;5EZ8G-C3WL5-B56YG-SCXM9-6QZAP（Standard Edition）&lt;br/&gt;P427L-9Y552-5433E-8DSR3-58Z68（MAC）&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;win 客户端下载：&lt;a href=&quot;https://www.789ccc.xyz/wp-content/uploads/2020/03/Proxifier.exe&quot; rel=&quot;nofollow&quot; data-original-title=&quot;&quot; title=&quot;&quot; style=&quot;color: rgb(0, 166, 124); text-decoration-line: none; text-indent: 0px !important;&quot;&gt;Proxifier&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;3、安装好 obs 软件，并配置好直播秘钥等参数；&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;三、详细配置过程：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;1、V2ray 与 Proxifier 之间的配置：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-579&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_96179.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;597&quot; height=&quot;317&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_96179.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-580&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_76058.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;797&quot; height=&quot;469&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-581&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_20705.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;1068&quot; height=&quot;475&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_20705.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;注意，配置后务必测试一下是否可用。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;2、配置 Proxifier 的代理规则，非常关键。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-585&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_80197.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;588&quot; height=&quot;512&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232516_80197.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-586&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_54075.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;716&quot; height=&quot;400&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_54075.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-587&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_91993.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;871&quot; height=&quot;525&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_91993.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal; text-align: center;&quot;&gt;&lt;img loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-588&quot; data-original=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_85317.png&quot; alt=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; title=&quot;Youtube直播如何设置？利用V2ray+proxifier实现Youtube油管直播推流&quot; width=&quot;724&quot; height=&quot;412&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/20220510232517_85317.png&quot; style=&quot;height: auto; max-width: 100%; border: 0px; vertical-align: middle; display: block; margin: 0px auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;多余规则都删掉。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;3、配置域名解析&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;因为youtube.com域名在国内的DNS解析是被污染的，所以域名解析也要配置到通过代理解析。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2022/05/202205101652196297403447.png&quot; title=&quot;1.png&quot; alt=&quot;1.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;4、配置 obs，实现直播的最后一步：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;配置直播串流秘钥到客户端即可。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 15px; text-indent: 2em; color: rgb(85, 85, 85); font-family: &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 15px; white-space: normal;&quot;&gt;其他直播软件也是同样方式实现。&lt;/p&gt;</description><pubDate>Tue, 10 May 2022 23:21:09 +0800</pubDate></item><item><title>X-UI：支持多协议多用户的 xray 面板</title><link>https://www.superrocket.net/xray/20.html</link><description>&lt;h1 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin: 24px 0px 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;功能介绍&lt;/h1&gt;&lt;ul dir=&quot;auto&quot; style=&quot;box-sizing: border-box; padding-left: 2em; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;系统状态监控&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;支持多用户多协议，网页可视化操作&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;支持的协议：vmess、vless、trojan、shadowsocks、dokodemo-door、socks、http&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;支持配置更多传输配置&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;流量统计，限制流量，限制到期时间&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可自定义 xray 配置模板&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;支持 https 访问面板（自备域名 + ssl 证书）&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;更多高级配置项，详见面板&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin: 24px 0px 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a id=&quot;user-content-安装升级&quot; class=&quot;anchor&quot; aria-hidden=&quot;true&quot; href=&quot;https://github.com/vaxilu/x-ui#安装升级&quot; style=&quot;box-sizing: border-box; background-color: transparent; text-decoration-line: none; float: left; padding-right: 4px; margin-left: -20px; line-height: 1;&quot;&gt;&lt;svg class=&quot;octicon octicon-link&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;安装&amp;amp;升级&lt;/h1&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;bash&amp;nbsp;&amp;lt;(curl&amp;nbsp;-Ls&amp;nbsp;https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)&lt;/pre&gt;&lt;h2 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 24px; margin-bottom: 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;手动安装&amp;amp;升级&lt;/h2&gt;&lt;ol dir=&quot;auto&quot; style=&quot;box-sizing: border-box; padding-left: 2em; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;首先从&amp;nbsp;&lt;a href=&quot;https://github.com/vaxilu/x-ui/releases&quot; style=&quot;box-sizing: border-box; background-color: transparent; text-decoration-line: none;&quot;&gt;https://github.com/vaxilu/x-ui/releases&lt;/a&gt;&amp;nbsp;下载最新的压缩包，一般选择&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;amd64&lt;/code&gt;架构&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;然后将这个压缩包上传到服务器的&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;/root/&lt;/code&gt;目录下，并使用&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;root&lt;/code&gt;用户登录服务器&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;blockquote style=&quot;box-sizing: border-box; margin: 0px 0px 16px; padding: 0px 1em; color: var(--color-fg-muted); border-left: 0.25em solid var(--color-border-default); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 0px;&quot;&gt;如果你的服务器 cpu 架构不是&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;amd64&lt;/code&gt;，自行将命令中的&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;amd64&lt;/code&gt;替换为其他架构&lt;/p&gt;&lt;/blockquote&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;cd&amp;nbsp;/root/
rm&amp;nbsp;x-ui/&amp;nbsp;/usr/local/x-ui/&amp;nbsp;/usr/bin/x-ui&amp;nbsp;-rf
tar&amp;nbsp;zxvf&amp;nbsp;x-ui-linux-amd64.tar.gz
chmod&amp;nbsp;+x&amp;nbsp;x-ui/x-ui&amp;nbsp;x-ui/bin/xray-linux-*&amp;nbsp;x-ui/x-ui.sh
cp&amp;nbsp;x-ui/x-ui.sh&amp;nbsp;/usr/bin/x-ui
cp&amp;nbsp;-f&amp;nbsp;x-ui/x-ui.service&amp;nbsp;/etc/systemd/system/
mv&amp;nbsp;x-ui/&amp;nbsp;/usr/local/
systemctl&amp;nbsp;daemon-reload
systemctl&amp;nbsp;enable&amp;nbsp;x-ui
systemctl&amp;nbsp;restart&amp;nbsp;x-ui&lt;/pre&gt;&lt;h2 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 24px; margin-bottom: 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;使用docker安装&lt;/h2&gt;&lt;blockquote style=&quot;box-sizing: border-box; margin: 0px 0px 16px; padding: 0px 1em; color: var(--color-fg-muted); border-left: 0.25em solid var(--color-border-default); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 0px;&quot;&gt;此 docker 教程与 docker 镜像由&lt;a href=&quot;https://github.com/Chasing66&quot; style=&quot;box-sizing: border-box; background-color: transparent; text-decoration-line: none;&quot;&gt;Chasing66&lt;/a&gt;提供&lt;/p&gt;&lt;/blockquote&gt;&lt;ol dir=&quot;auto&quot; style=&quot;box-sizing: border-box; padding-left: 2em; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;安装docker&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;curl&amp;nbsp;-fsSL&amp;nbsp;https://get.docker.com&amp;nbsp;|&amp;nbsp;sh&lt;/pre&gt;&lt;ol start=&quot;2&quot; dir=&quot;auto&quot; style=&quot;box-sizing: border-box; padding-left: 2em; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;安装x-ui&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;mkdir&amp;nbsp;x-ui&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;cd&amp;nbsp;x-ui
docker&amp;nbsp;run&amp;nbsp;-itd&amp;nbsp;--network=host&amp;nbsp;\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-v&amp;nbsp;$PWD/db/:/etc/x-ui/&amp;nbsp;\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-v&amp;nbsp;$PWD/cert/:/root/cert/&amp;nbsp;\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;--name&amp;nbsp;x-ui&amp;nbsp;--restart=unless-stopped&amp;nbsp;\
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;enwaiax/x-ui:latest&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #57606A; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; background-color: #FFFFFF;&quot;&gt;Build 自己的镜像&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;docker&amp;nbsp;build&amp;nbsp;-t&amp;nbsp;x-ui&amp;nbsp;.&lt;/pre&gt;&lt;h2 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 24px; margin-bottom: 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;建议系统&lt;/h2&gt;&lt;ul dir=&quot;auto&quot; style=&quot;box-sizing: border-box; padding-left: 2em; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;CentOS 7+&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Ubuntu 16+&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Debian 8+&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin: 24px 0px 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a id=&quot;user-content-常见问题&quot; class=&quot;anchor&quot; aria-hidden=&quot;true&quot; href=&quot;https://github.com/vaxilu/x-ui#常见问题&quot; style=&quot;box-sizing: border-box; background-color: transparent; text-decoration-line: none; float: left; padding-right: 4px; margin-left: -20px; line-height: 1;&quot;&gt;&lt;svg class=&quot;octicon octicon-link&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;常见问题&lt;/h1&gt;&lt;h2 dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 24px; margin-bottom: 16px; line-height: 1.25; padding-bottom: 0.3em; border-bottom: 1px solid var(--color-border-muted); color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a id=&quot;user-content-从-v2-ui-迁移&quot; class=&quot;anchor&quot; aria-hidden=&quot;true&quot; href=&quot;https://github.com/vaxilu/x-ui#从-v2-ui-迁移&quot; style=&quot;box-sizing: border-box; background-color: transparent; text-decoration-line: none; float: left; padding-right: 4px; margin-left: -20px; line-height: 1;&quot;&gt;&lt;svg class=&quot;octicon octicon-link&quot; viewbox=&quot;0 0 16 16&quot; version=&quot;1.1&quot; width=&quot;16&quot; height=&quot;16&quot; aria-hidden=&quot;true&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;从 v2-ui 迁移&lt;/h2&gt;&lt;p dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 16px; color: rgb(36, 41, 47); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;首先在安装了 v2-ui 的服务器上安装最新版 x-ui，然后使用以下命令进行迁移，将迁移本机 v2-ui 的&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;所有 inbound 账号数据&lt;/code&gt;至 x-ui，&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;面板设置和用户名密码不会迁移&lt;/code&gt;&lt;/p&gt;&lt;blockquote style=&quot;box-sizing: border-box; margin: 0px 0px 16px; padding: 0px 1em; color: var(--color-fg-muted); border-left: 0.25em solid var(--color-border-default); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p dir=&quot;auto&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 0px;&quot;&gt;迁移成功后请&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;关闭 v2-ui&lt;/code&gt;并且&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;重启 x-ui&lt;/code&gt;，否则 v2-ui 的 inbound 会与 x-ui 的 inbound 会产生&lt;code style=&quot;box-sizing: border-box; font-family: ui-monospace, SFMono-Regular, &amp;quot;SF Mono&amp;quot;, Menlo, Consolas, &amp;quot;Liberation Mono&amp;quot;, monospace; font-size: 13.6px; padding: 0.2em 0.4em; margin: 0px; background-color: var(--color-neutral-muted); border-radius: 6px;&quot;&gt;端口冲突&lt;/code&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;x-ui&amp;nbsp;v2-ui&lt;/pre&gt;</description><pubDate>Fri, 15 Apr 2022 19:31:40 +0800</pubDate></item><item><title>V2Ray的VMESS协议添加多个用户的方法</title><link>https://www.superrocket.net/v2ray/19.html</link><description>&lt;p&gt;找到并配置文件&lt;span style=&quot;color: #444444; font-family: Tahoma, &amp;quot;Microsoft Yahei&amp;quot;, Simsun; font-size: 15.75px; background-color: #FFFFFF;&quot;&gt;vi /etc/v2ray/config.json&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;&amp;quot;clients&amp;quot;:&amp;nbsp;[
&amp;nbsp;&amp;nbsp;{&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;xxxx&amp;quot;,&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64},
&amp;nbsp;&amp;nbsp;{&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;yyyy&amp;quot;,&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64}
]&lt;/pre&gt;&lt;p&gt;重启v2ray即可生效&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #FF0000;&quot;&gt;请注意id的值仅前32位字符有效&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;对于多用户，多端口配置如下：&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #24292E; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; background-color: #FFFFFF;&quot;&gt;example config : multi port , multi user&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;{
&amp;nbsp;&amp;nbsp;&amp;quot;inbounds&amp;quot;:&amp;nbsp;[{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;port&amp;quot;:&amp;nbsp;1234,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;protocol&amp;quot;:&amp;nbsp;&amp;quot;vmess&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;settings&amp;quot;:&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;clients&amp;quot;:&amp;nbsp;[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;UUID&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;level&amp;quot;:&amp;nbsp;1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;UUID&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;level&amp;quot;:&amp;nbsp;1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;},
&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;port&amp;quot;:&amp;nbsp;1235,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;protocol&amp;quot;:&amp;nbsp;&amp;quot;vmess&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;settings&amp;quot;:&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;clients&amp;quot;:&amp;nbsp;[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;UUID&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;level&amp;quot;:&amp;nbsp;1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;id&amp;quot;:&amp;nbsp;&amp;quot;UUID&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;level&amp;quot;:&amp;nbsp;1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;alterId&amp;quot;:&amp;nbsp;64
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;}],
&amp;nbsp;&amp;nbsp;&amp;quot;outbounds&amp;quot;:&amp;nbsp;[{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;protocol&amp;quot;:&amp;nbsp;&amp;quot;freedom&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;settings&amp;quot;:&amp;nbsp;{}
&amp;nbsp;&amp;nbsp;},{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;protocol&amp;quot;:&amp;nbsp;&amp;quot;blackhole&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;settings&amp;quot;:&amp;nbsp;{},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;tag&amp;quot;:&amp;nbsp;&amp;quot;blocked&amp;quot;
&amp;nbsp;&amp;nbsp;}],
&amp;nbsp;&amp;nbsp;&amp;quot;routing&amp;quot;:&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;rules&amp;quot;:&amp;nbsp;[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;type&amp;quot;:&amp;nbsp;&amp;quot;field&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;ip&amp;quot;:&amp;nbsp;[&amp;quot;geoip:private&amp;quot;],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;outboundTag&amp;quot;:&amp;nbsp;&amp;quot;blocked&amp;quot;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;]
&amp;nbsp;&amp;nbsp;}
}&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #24292E; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 16 Mar 2021 09:40:50 +0800</pubDate></item><item><title>Mux 多路复用是什么</title><link>https://www.superrocket.net/v2ray/14.html</link><description>&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Mux 功能是在一条 TCP 连接上分发多个 TCP 连接的数据。实现细节详见&lt;a href=&quot;https://www.v2ray.com/developer/protocols/muxcool.html&quot; style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; text-decoration-line: none; font-size: inherit; color: rgb(65, 131, 196); background: 0px 0px;&quot;&gt;Mux.Cool&lt;/a&gt;。&lt;span style=&quot;color: #FF0000;&quot;&gt;Mux 是为了减少 TCP 的握手延迟而设计，而非提高连接的吞吐量。使用 Mux 看视频、下载或者测速通常都有反效果。&lt;/span&gt;Mux 只需要在客户端启用，服务器端自动适配。&lt;/p&gt;&lt;h2 id=&quot;muxobject&quot; style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; position: relative; font-size: 1.75em; orphans: 3; widows: 3; break-after: avoid; margin-top: 1.275em; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;MuxObject&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;MuxObject&lt;/code&gt;对应&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;OutboundObject&lt;/code&gt;中的&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;mux&lt;/code&gt;项。&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-markdown&quot;&gt;{
&amp;nbsp;&amp;nbsp;&amp;quot;enabled&amp;quot;:&amp;nbsp;false,
&amp;nbsp;&amp;nbsp;&amp;quot;concurrency&amp;quot;:&amp;nbsp;8
}&lt;/pre&gt;&lt;blockquote style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 10px 0px 0.85em; padding: 0px 15px; border-left: 4px solid rgb(100, 181, 246); border-top: 1px solid rgb(100, 181, 246); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;&quot;&gt;&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;enabled&lt;/code&gt;: true | false&lt;/p&gt;&lt;/blockquote&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;是否启用 Mux 转发请求&lt;/p&gt;&lt;blockquote style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 10px 0px 0.85em; padding: 0px 15px; border-left: 4px solid rgb(100, 181, 246); border-top: 1px solid rgb(100, 181, 246); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;&quot;&gt;&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;concurrency&lt;/code&gt;: number&lt;/p&gt;&lt;/blockquote&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;最大并发连接数。最小值&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;1&lt;/code&gt;，最大值&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;1024&lt;/code&gt;，缺省默认值&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;8&lt;/code&gt;。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;特殊值&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;-1&lt;/code&gt;，不加载mux模块。(4.22.0+)&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; orphans: 3; widows: 3; margin-top: 0px; color: rgb(51, 51, 51); font-family: &amp;quot;noto sans cjk sc&amp;quot;, &amp;quot;pingfang sc&amp;quot;, &amp;quot;microsoft yahei&amp;quot;, &amp;quot;hiragino sans gb&amp;quot;, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255); margin-bottom: 0px !important;&quot;&gt;这个数值表示了一个 TCP 连接上最多承载的 Mux 连接数量。当客户端发出了 8 个 TCP 请求，而&lt;code style=&quot;box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; font-family: Consolas, &amp;quot;liberation mono&amp;quot;, Menlo, Courier, monospace; font-size: 0.85em; break-inside: avoid; direction: ltr; margin: 0px; padding: 0px; border: none; color: inherit; background-color: rgb(247, 247, 247); white-space: nowrap;&quot;&gt;concurrency=8&lt;/code&gt;时，V2Ray 只会发出一条实际的 TCP 连接，客户端的 8 个请求全部由这个 TCP 连接传输。&lt;/p&gt;</description><pubDate>Mon, 25 Jan 2021 17:39:28 +0800</pubDate></item><item><title>启用多路复用提升网络并发性能</title><link>https://www.superrocket.net/jishu/15.html</link><description>&lt;h3 id=&quot;注意trojan不支持这个特性&quot; style=&quot;box-sizing: border-box; margin: 1.28rem 0px 0px; font-size: 25.6px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; line-height: 1.625; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;注意，Trojan不支持这个特性&lt;/h3&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;Trojan-Go支持使用多路复用提升网络并发性能。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;Trojan协议基于TLS。在一个TLS安全连接建立之前，连接双方需要进行密钥协商和交换等步骤确保后续通讯的安全性。这个过程即为TLS握手。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;目前GFW对于TLS握手存在审查和干扰，同时由于出口网络拥塞的原因，普通的线路完成TLS握手通常需要将近一秒甚至更长的时间。这可能导致浏览网页和观看视频的延迟提高。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;Trojan-Go使用多路复用的方式解决这一问题。每个建立的TLS连接将承载多个TCP连接。当新的代理请求到来时，不需要和服务器握手发起一个新的TLS连接，而是尽可能重复使用已有的TLS连接。以此减少频繁TLS握手和TCP握手的带来的延迟。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;启用多路复用不会增加你的链路速度（甚至会有所减少），而且可能会增加服务器和客户端的计算负担。可以粗略地理解为，多路复用牺牲网络吞吐和CPU功耗，换取更低的延迟。在高并发的情景下，如浏览含有大量图片的网页时，或者发送大量UDP请求时，可以提升使用体验。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;激活&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;mux&lt;/code&gt;模块，只需要将&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;mux&lt;/code&gt;选项中&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;enabled&lt;/code&gt;字段设为true即可，下面是一个客户端的例子&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;...
&amp;quot;mux&amp;quot;&amp;nbsp;:{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;enabled&amp;quot;:&amp;nbsp;true
}&lt;/pre&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;只需要配置客户端即可，服务端可以自动适配，无需配置&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;mux&lt;/code&gt;选项。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;完整的mux配置如下&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;&amp;quot;mux&amp;quot;:&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;enabled&amp;quot;:&amp;nbsp;false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;concurrency&amp;quot;:&amp;nbsp;8,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;idle_timeout&amp;quot;:&amp;nbsp;60
}&lt;/pre&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;concurrency&lt;/code&gt;是每个TLS连接最多可以承载的TCP连接数。这个数值越大，每个TLS连接被复用的程度就更高，握手导致的延迟越低。但服务器和客户端的计算负担也会越大，这有可能使你的网络吞吐量降低。如果你的线路的TLS握手极端缓慢，你可以将这个数值设置为-1，Trojan-Go将只进行一次TLS握手，只使用唯一的一条TLS连接进行传输。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 1.28rem; margin-bottom: 0px; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; white-space: normal; background-color: rgb(250, 250, 250);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, &amp;quot;Courier New&amp;quot;, monospace; font-size: 1em; padding: 0.2rem; border-radius: 0.2rem; background-color: rgb(244, 244, 244); margin-top: 0px; margin-bottom: 0px;&quot;&gt;idle_timeout&lt;/code&gt;指的是每个TLS连接空闲多长时间后关闭。设置超时时间，&lt;span style=&quot;box-sizing: border-box; font-weight: bolder; margin-top: 0px; margin-bottom: 0px;&quot;&gt;可能&lt;/span&gt;有助于减少不必要的长连接存活确认(Keep Alive)流量传输引发GFW的探测。你可以将这个数值设置为-1，TLS连接在空闲时将被立即关闭。&lt;/p&gt;</description><pubDate>Sun, 24 Jan 2021 12:53:32 +0800</pubDate></item><item><title>NaiveProxy – 一款可以媲美 Trojan/Trojan-Go 的科学上网工具 | 支持HTTP/2协议</title><link>https://www.superrocket.net/jishu/18.html</link><description>&lt;p&gt;&lt;span style=&quot;color: #313131; font-family: Ubuntu; font-size: 16px; background-color: #FFFFFF;&quot;&gt;最近也许你也明显感觉到V2Ray节点受到干扰的频率越来越高，同时从上个月开始很多机场都陆续增加了Trojan节点，甚至有机场完全转型为纯Trojan机场。与此同时，就在前几天Trojan-Qt5作者宣布不再更新并删除所有源代码和已发布的所有软件。这意味着什么？那就是Trojan暂时还不能被很好的识别并干扰，即Trojan即将站在舞台中央的时代来了！既然Trojan那么牛，而且还有Trojan-GFW的进化版Trojan-Go都没有被完全开发，你还写这篇文章干啥？我们都知道，再牛逼的技术总有被破解的一天，于是去年底开始有大牛开发了另一种类似于Trojan伪装成最流行的HTTPS流量的新代理技术，那就是咱们今天要说的NaiveProxy，是基于 HTTP/2 协议的新代理工具。另外，据我推测，NaiveProxy一定跟 Trojan-Qt5 有关系，因为最后版本的Trojan-Qt5已经支持了Naiveproxy，还有Snell，这个以后会单独写文章。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #313131; font-family: Ubuntu; font-size: 16px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;1、NaiveProxy是什么？&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;NaiveProxy是2019年底由klzgrad大神开发的一种突破GFW网络审查的新型科学上网代理技术，它使用Chrome的网络堆栈来伪装流量，具有较强的抗审查能力和较低的可检测性，重用Chrome网络堆栈是确保性能和安全性的最佳实践。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;NaiveProxy还可以缓解以下流量攻击：&lt;/p&gt;&lt;ul style=&quot;box-sizing: inherit; margin-bottom: 1em; margin-left: 1.25em; padding: 0px; list-style-position: initial; list-style-image: initial; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;网站指纹识别/流量分类：通过 HTTP/2 中的流量多路复用来缓解。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;TLS参数指纹识别：因重用Chrome的网络堆栈而失败。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;主动探测：被应用程序前端击败，即通过应用层路由将代理服务器隐藏在常用前端的后面。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;基于长度的流量分析：通过长度填充缓解。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;该代码由一系列补丁程序组成，这些补丁程序在每个新的Chrome版本中都经过了变形和重新设计。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;NaiveProxy项目地址：&lt;a href=&quot;https://github.com/klzgrad/naiveproxy&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/klzgrad/naiveproxy&lt;/a&gt;&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;2%E3%80%81NaiveProxy%E7%9A%84%E5%B7%A5%E4%BD%9C%E5%8E%9F%E7%90%86&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;2、NaiveProxy的工作原理&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;工作原理架构：&lt;/span&gt;[浏览器 → NaiveProxy客户端] ⟶ GFW ⟶ [常用前端 → NaiveProxy服务端] ⟶ 互联网&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;由于 NaiveProxy 使用Chrome的网络堆栈，GFW审查截获的流量行为与Chrome和标准前端（如 Caddy、HAProxy）之间的常规 HTTP/2 流量完全相同。前端还会将未经身份验证的用户和活动探测器重新路由到后端HTTP服务器，从而使得无法检测到代理的存在，比如像这样：探查⟶常用前端⟶网站页面。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;从 NaiveProxy V84 版本开始，用户可以在没有Naive服务器的情况下运行Caddy转发代理的Naive分支。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;3%E3%80%81NaiveProxy%E4%B8%8ETrojan%E7%9A%84%E4%BC%98%E7%82%B9%E4%B8%8E%E5%8C%BA%E5%88%AB&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;3、NaiveProxy与Trojan的优点与区别&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Trojan最大的优点就是伪装成互联网最常见的HTTPS流量，而NaiveProxy最大的优势不仅伪装成 HTTP/2 的流量，而且使用互联网最常用的浏览器Chrome网络堆栈的指纹，更加难以被识别，而且这些也是Go语言模仿不了的。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;4%E3%80%81NaiveProxy%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%90%AD%E5%BB%BA&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;4、NaiveProxy服务器搭建&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（1）安装基础组件&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;apt&amp;nbsp;update&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;apt&amp;nbsp;-y&amp;nbsp;install&amp;nbsp;libnss3&amp;nbsp;wget&amp;nbsp;unzip
cp&amp;nbsp;/usr/share/zoneinfo/Asia/Shanghai&amp;nbsp;/etc/localtime&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（2）安装 Caddy &amp;amp;&amp;amp; Naiveproxy&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;wget&amp;nbsp;https://github.com/charlieethan/firewall-proxy/releases/download/2.1.1/caddy
chmod&amp;nbsp;+x&amp;nbsp;caddy&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;setcap&amp;nbsp;cap_net_bind_service=+ep&amp;nbsp;./caddy&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（3）下载伪装网站模板&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;mkdir&amp;nbsp;-p&amp;nbsp;/var/www/html&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;cd&amp;nbsp;/var/www/html
wget&amp;nbsp;https://github.com/charlieethan/firewall-proxy/releases/download/2.1.1-t/6.zip&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;unzip&amp;nbsp;6.zip&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（4）修改配置文件&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;cd&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;cat&amp;nbsp;&amp;gt;&amp;nbsp;caddy.json&amp;nbsp;&amp;lt;&amp;lt;EOF{&amp;nbsp;&amp;nbsp;&amp;quot;apps&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;http&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;servers&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;srv0&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;listen&amp;quot;:&amp;nbsp;[&amp;quot;:443&amp;quot;],&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;routes&amp;quot;:&amp;nbsp;[{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;handle&amp;quot;:&amp;nbsp;[{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;handler&amp;quot;:&amp;nbsp;&amp;quot;forward_proxy&amp;quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;hide_ip&amp;quot;:&amp;nbsp;true,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;hide_via&amp;quot;:&amp;nbsp;true,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;auth_user&amp;quot;:&amp;nbsp;&amp;quot;user_name&amp;quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#改为你的用户名&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;auth_pass&amp;quot;:&amp;nbsp;&amp;quot;your_password&amp;quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#改为你的密码&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;probe_resistance&amp;quot;:&amp;nbsp;{&amp;quot;domain&amp;quot;:&amp;nbsp;&amp;quot;unsplash.com:443&amp;quot;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;match&amp;quot;:&amp;nbsp;[{&amp;quot;host&amp;quot;:&amp;nbsp;[&amp;quot;your_domain.com&amp;quot;]}],&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#改为你的域名&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;handle&amp;quot;:&amp;nbsp;[{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;handler&amp;quot;:&amp;nbsp;&amp;quot;file_server&amp;quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;root&amp;quot;:&amp;nbsp;&amp;quot;/var/www/html&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}],&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;terminal&amp;quot;:&amp;nbsp;true&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}],&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;tls_connection_policies&amp;quot;:&amp;nbsp;[{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;match&amp;quot;:&amp;nbsp;{&amp;quot;sni&amp;quot;:&amp;nbsp;[&amp;quot;your_domain.com&amp;quot;]}&amp;nbsp;&amp;nbsp;&amp;nbsp;#改为你的域名&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;tls&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;automation&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;policies&amp;quot;:&amp;nbsp;[{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;subjects&amp;quot;:&amp;nbsp;[&amp;quot;your_domain.com&amp;quot;],&amp;nbsp;&amp;nbsp;&amp;nbsp;#改为你的域名&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;issuer&amp;quot;:&amp;nbsp;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;module&amp;quot;:&amp;nbsp;&amp;quot;acme&amp;quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;email&amp;quot;:&amp;nbsp;&amp;quot;your@email.com&amp;quot;&amp;nbsp;&amp;nbsp;#改为你的邮箱地址&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;}}EOF&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（5）启动服务&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;nohup&amp;nbsp;./caddy&amp;nbsp;run&amp;nbsp;--config&amp;nbsp;caddy.json&amp;nbsp;&amp;gt;caddy.log&amp;nbsp;2&amp;lt;&amp;amp;1&amp;nbsp;&amp;amp;&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（6）安装并启用 BBR 加速&lt;/p&gt;&lt;pre class=&quot;EnlighterJSRAW&quot; data-enlighter-linenumbers=&quot;false&quot; style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;cd&amp;nbsp;/usr/src&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;wget&amp;nbsp;-N&amp;nbsp;--no-check-certificate&amp;nbsp;&amp;quot;https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh&amp;quot;&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;chmod&amp;nbsp;+x&amp;nbsp;tcp.sh&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;./tcp.sh&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;温馨提醒：&lt;/span&gt;如果修改版BBR加速模块工作不正常，请使用原版BBR模块加速。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;由于新版本Linux系统自带BBR加速模块，所以你可以直接执行以下命令，启用原版BBR加速。命令如下：&lt;/p&gt;&lt;pre style=&quot;box-sizing: inherit; overflow: auto; font-family: &amp;quot;Courier 10 Pitch&amp;quot;, Courier, monospace; font-size: 0.9375em; background-color: rgb(238, 238, 238); line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; padding: 1.6em; color: rgb(49, 49, 49);&quot;&gt;bash&amp;nbsp;-c&amp;nbsp;&amp;#39;echo&amp;nbsp;&amp;quot;net.core.default_qdisc=fq&amp;quot;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/etc/sysctl.conf&amp;#39;bash&amp;nbsp;-c&amp;nbsp;&amp;#39;echo&amp;nbsp;&amp;quot;net.ipv4.tcp_congestion_control=bbr&amp;quot;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/etc/sysctl.conf&amp;#39;sysctl&amp;nbsp;-p&lt;/pre&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;至此，NaiveProxy服务器端就搭建完成了。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;5%E3%80%81NaiveProxy%E4%B8%80%E9%94%AE%E5%AE%89%E8%A3%85%E5%B7%A5%E5%85%B7ProxySU&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;5、NaiveProxy一键安装工具ProxySU&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ProxySU不仅仅是NaiveProxy一键搭建工具，它还是 V2ray/Trojan/NaiveProxy/Trojan-Go/ShadowsocksR(SSR)/Shadowsocks-libev及相关插件 一键安装工具。ProxySU支持BBR一键开启，但目前仅支持CentOS8/Debian9/10/Ubuntu18.04及以上系统，支持语言包括：English、简体中文、正体（繁体）中文。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;由此可见，ProxySU功能还是非常强悍的，以后我会单独写文章介绍。此工具是一个Windows系统软件，运行后界面如下图所示：&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-7706 lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125181430_67967.png&quot; alt=&quot;&quot; width=&quot;604&quot; height=&quot;666&quot; sizes=&quot;(max-width: 604px) 100vw, 604px&quot; srcset=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125181430_67967.png 604w, https://iyideng.me/wp-content/uploads/2020/08/ProxySU-272x300.png 272w&quot; data-ll-status=&quot;loaded&quot; style=&quot;box-sizing: inherit; border: 0px; height: auto; max-width: 100%; vertical-align: middle;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ProxySU项目官网：&lt;a href=&quot;https://github.com/proxysu/windows&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/proxysu/windows&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://github.com/proxysu/windows/releases&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;ProxySU工具官方下载&lt;/a&gt;&amp;nbsp;| ProxySU 最新版网盘备份下载：&lt;a href=&quot;http://www.mediafire.com/folder/rm2viyqsw039x/ProxySU&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;下载地址&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;关于 ProxySU 一键安装工具的介绍与使用教程，请参考文章&amp;nbsp;&lt;a href=&quot;https://iyideng.me/tools/proxysu.html&quot; data-wpel-link=&quot;internal&quot; rel=&quot;follow noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;ProxySU – 一款支持 V2ray/Trojan/NaiveProxy/Trojan-Go/ShadowsocksR(SSR)/Shadowsocks-libev/MTProto+TLS 全协议全能的一键安装工具&lt;/a&gt;&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;6%E3%80%81NaiveProxy%E5%AE%A2%E6%88%B7%E7%AB%AF%E4%B8%8B%E8%BD%BD&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;6、NaiveProxy客户端下载&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;NaiveProxy客户端支持Windows/MacOS/Linux及各种OpenWrt系统平台，但我们应该始终使用最新版本来保持与Chrome相同的签名。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;注意事项：&lt;/span&gt;在Linux上，必须先安装libnss3，然后才能使用预构建的二进制文件。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;目前，没有支持移动端的NaiveProxy客户端，最常用的有Trojan-Qt5、Qv2ray（需要配合&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-NaiveProxy/releases/tag/v1.0.0&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;NaiveProxy 插件 v1.0&lt;/a&gt;）和 NaiveSharp（作者已删库，最新版为 NaiveSharp 0.6.4 Preview）。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;【知识科普】&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Qv2ray是使用 Qt 框架的跨平台 V2Ray 客户端，支持 Windows/Linux/macOS，配合插件系统支持 SSR / Trojan / Trojan-Go / NaiveProxy 等。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Qv2ray项目地址：&lt;a href=&quot;https://github.com/Qv2ray/Qv2ray&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/Qv2ray/Qv2ray&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;实际上，Qv2ray 插件是 Qv2ray 的扩展，能让你使用更多功能特性。当前，Qv2ray 项目组共发布以下 6 个我们维护的插件：&lt;/p&gt;&lt;ul style=&quot;box-sizing: inherit; margin-bottom: 1em; margin-left: 1.25em; padding: 0px; list-style-position: initial; list-style-image: initial; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-SS&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvSSPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中启用 Shadowsocks SIP003 完整支持&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-SSR&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvSSRPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 ShadowsocksR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-Trojan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvTrojanPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 Trojan&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-NaiveProxy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvNaiveProxyPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 NaiveProxy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-Command&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvCommandPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 当特殊事件发生时，运行任意指定的命令&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/Qv2ray/QvPlugin-Trojan-Go&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow external&quot; data-wpel-link=&quot;external&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;QvTrojan-GoPlugin&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 Trojan-Go&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;7%E3%80%81SSSSRV2RayTrojan%E6%9C%BA%E5%9C%BA%E6%8E%A8%E8%8D%90&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;7、SS/SSR/V2Ray/Trojan机场推荐&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;截至目前，还没有大神放出来可以在VPS直接执行的NaiveProxy一键安装脚本，如果你无法独立完成搭建NaiveProxy服务器，那么我建议你使用已经成熟的技术。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 25 Oct 2020 13:13:29 +0800</pubDate></item><item><title>Trojan和V2Ray哪个好？V2Ray自研VMess/VLESS协议跟Trojan-GFW/Trojan-Go协议的区别和优缺点对比</title><link>https://www.superrocket.net/jishu/17.html</link><description>&lt;p&gt;&lt;span style=&quot;color: #313131; font-family: Ubuntu; font-size: 16px; background-color: #FFFFFF;&quot;&gt;在天朝大陆境内，GFW封锁和反封锁一直在不断地较量，促使着IT科学上网代理技术的飞速发展，各种代理协议也不断迭代更新。时至今日，这个互联网圈主流的科学上网协议有Shadowsocks(SS)/ShadowsocksR(SSR)/VMess/VLESS/Trojan-gfw/Trojan-Go，还有小众的Brook/Snell/NaiveProxy等代理协议。在这些众多协议中，VMess/VLESS/Trojan-gfw/Trojan-Go抗封锁能力最好，表现亮眼，但是谁更胜一筹呢？今天，笔者&lt;/span&gt;&lt;span style=&quot;color: #313131; font-family: Ubuntu; font-size: 16px; background-color: #FFFFFF;&quot;&gt;就带大家来看一下他们的表现。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #313131; font-family: Ubuntu; font-size: 16px; background-color: #FFFFFF;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 18pt;&quot;&gt;1、V2Ray自研协议VMess与VLESS的区别对比&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Project V 官网：&lt;a href=&quot;https://www.v2fly.org/&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://www.v2fly.org/&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;V2Ray项目官网：&lt;a href=&quot;https://github.com/v2ray/v2ray-core&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/v2ray/v2ray-core&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;VMess 是一个 Project V 项目组自研的加密传输协议，它分为入站和出站两部分，通常作为 V2Ray 客户端和服务器之间的桥梁。VMess 依赖于系统时间，请确保使用 V2Ray 的系统 UTC 时间误差在 90 秒之内，时区无关。在 Linux 系统中可以安装&lt;code style=&quot;box-sizing: inherit; font-family: Monaco, Consolas, &amp;quot;Andale Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, monospace; font-size: 0.9375em; background-color: rgb(242, 242, 242); padding: 0.125em 0.25em;&quot;&gt;ntp&lt;/code&gt;服务来自动同步系统时间。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;虽然 VLESS 是一个无状态的轻量传输协议，但 VMess 和 VLESS 一样，也分为入站和出站两部分，可以作为 V2Ray 客户端和服务器之间的桥梁。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;VLESS&amp;nbsp; 与&amp;nbsp;VMess&amp;nbsp;的配置均分为两部分，&lt;code style=&quot;box-sizing: inherit; font-family: Monaco, Consolas, &amp;quot;Andale Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, monospace; font-size: 0.9375em; background-color: rgb(242, 242, 242); padding: 0.125em 0.25em;&quot;&gt;InboundConfigurationObject&lt;/code&gt;和&lt;code style=&quot;box-sizing: inherit; font-family: Monaco, Consolas, &amp;quot;Andale Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, monospace; font-size: 0.9375em; background-color: rgb(242, 242, 242); padding: 0.125em 0.25em;&quot;&gt;OutboundConfigurationObject&lt;/code&gt;，分别对应入站和出站协议配置中的&lt;code style=&quot;box-sizing: inherit; font-family: Monaco, Consolas, &amp;quot;Andale Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, monospace; font-size: 0.9375em; background-color: rgb(242, 242, 242); padding: 0.125em 0.25em;&quot;&gt;settings&lt;/code&gt;项。&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;但不同之处在于，VLESS&amp;nbsp; 不依赖于系统时间，认证方式同样为 UUID，但不需要 alterId。另外，目前 VLESS 没有自带加密，请用于可靠信道，如 TLS，而且 VLESS 不支持分享链接和二维码。&lt;/span&gt;&lt;/p&gt;&lt;blockquote style=&quot;box-sizing: inherit; border-left: 4px solid rgb(49, 49, 49); padding-left: 1em; margin: 0px 0px 1em; quotes: &amp;quot;&amp;quot; &amp;quot;&amp;quot;; position: relative; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none;&quot;&gt;你正在使用 TLS，简单地将 VMess 改为 VLESS 就可以获得性能提升，这只是 VLESS 的短期意义，它的长期意义是：可扩展性空前，适合随意组合、全场景广泛使用，符合很多人的设想、几乎所有人的需求，足以成为 v2ray 的下一代主要协议，乃至整个 XX 界的终极协议。&lt;/p&gt;&lt;/blockquote&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;现在已经有大神在 VLESS 协议的基础上引入了 XTLS 黑科技，因为 XTLS 无缝拼接了内外两条货真价实的 TLS，此时代理本身几乎无需再对数据加解密。VLESS + XTLS 可以理解为是增强版 ECH，即多支持身份认证、代理转发、明文加密、UDP over TCP 等。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;注意事项：&lt;/span&gt;XTLS 本身需要是 TLSv1.3（正常情况下的协商结果），内层 TLS 可以为 1.3 或 1.2（上网时的绝大多数流量），此时特殊功能就会生效（填写 flow 是开启/指定特殊功能，生效是另一码事）。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;2%E3%80%81Trojan_%E8%B7%9F_Trojan-Go_%E7%9A%84%E5%8C%BA%E5%88%AB%E5%92%8C%E5%85%B3%E7%B3%BB&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 18pt;&quot;&gt;2、Trojan 跟 Trojan-Go 的区别和关系&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Trojan 全称为 Trojan-GFW，是一把通往自由互联网世界的万能钥匙，一种专注于极力伪装成HTTPS流量传输数据的代理协议。Trojan原版不使用 Websocket 混淆，Trojan-GFW 仅支持Websocket，但是均不支持 Cloudflare CDN 流量中转。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 12pt;&quot;&gt;Trojan-GFW项目地址：&lt;a href=&quot;https://github.com/trojan-gfw/trojan&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/trojan-gfw/trojan&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 12pt;&quot;&gt;Trojan-Go 是使用Go语言实现的完整Trojan代理，与Trojan协议以及Trojan-GFW版本的配置文件格式完全兼容，而且更加安全、高效、轻巧、易用。Trojan-Go 支持使用多路复用提升并发性能，使用路由模块实现国内直连；支持CDN流量中转(基于WebSocket over TLS/SSL)；支持使用AEAD对Trojan流量二次加密(基于Shadowsocks AEAD)；支持可插拔的传输层插件，允许替换TLS，使用其他加密隧道传输Trojan协议流量；支持基于ACME协议从Let’s Encrypt自动申请和更新HTTPS证书，只需提供域名和邮箱；直接运行解压得到的执行文件即可，无其他组件依赖。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 12pt;&quot;&gt;Trojan-Go项目官网：&lt;a href=&quot;https://github.com/p4gefau1t/trojan-go&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://github.com/p4gefau1t/trojan-go&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 12pt;&quot;&gt;Trojan-Go&lt;/span&gt;项目官方文档：&lt;a href=&quot;https://p4gefau1t.github.io/trojan-go/&quot; data-wpel-link=&quot;external&quot; target=&quot;_blank&quot; rel=&quot;nofollow external noopener noreferrer&quot; style=&quot;box-sizing: inherit; background-color: transparent; color: rgb(32, 156, 193); text-decoration-line: none; opacity: 0.8;&quot;&gt;https://p4gefau1t.github.io/trojan-go/&lt;/a&gt;&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;3%E3%80%81Trojan%E5%92%8CV2Ray%E5%93%AA%E4%B8%AA%E5%AE%89%E5%85%A8%EF%BC%9F&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 18pt;&quot;&gt;3、Trojan和V2Ray哪个安全？&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Trojan只适用第三方的TLS加密协议，也就是说HTTPS有多安全，Trojan和Trojan-Go就有多安全；V2Ray自研发的VMess可以使用任何第三方加密方式，而VLESS与Trojan一样，也是仅使用TLS加密，所以这点跟Trojan一样都是非常安全的。至于，你非要在安全方面分高下是没有意义的，咱们还是在科学上网性能方面进行对比吧！&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;4%E3%80%81VMessVLESSTrojanTrojan-Go%E6%80%A7%E8%83%BD%E4%B8%8E%E6%B5%8B%E9%80%9F%E5%AF%B9%E6%AF%94&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 18pt;&quot;&gt;4、VMess/VLESS/Trojan/Trojan-Go性能与测速对比&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（1）VMess、VLESS和Trojan协议测速对比图（来自YouTube洋葱大佬的视频截图）&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-8198 lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125180651_42298.png&quot; alt=&quot;&quot; width=&quot;800&quot; height=&quot;315&quot; sizes=&quot;(max-width: 800px) 100vw, 800px&quot; srcset=&quot;https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VMess、VLESS与Trojan-gfw及Trojan-Go性能和速度测试对比.png 800w, https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VMess、VLESS与Trojan-gfw及Trojan-Go性能和速度测试对比-300x118.png 300w, https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VMess、VLESS与Trojan-gfw及Trojan-Go性能和速度测试对比-768x302.png 768w&quot; data-ll-status=&quot;loaded&quot; style=&quot;box-sizing: inherit; border: 0px; height: auto; max-width: 100%; vertical-align: middle;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;由于 VLESS&amp;nbsp; 不依赖于系统时间，认证方式同样为 UUID，但不需要 alterId，而且 VLESS 没有自带加密，所以 VLESS 更轻量，对系统资源的占用要更低，而速度提升也会更好一些。而Trojan协议只伪装成HTTPS流量，非常轻量，在科学上网速度方面比VLESS+TLS稍快。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（2）VLESS、Trojan和Trojan-Go协议对系统CPU资源消耗对比图（来自YouTube洋葱视频截图）&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-8197 lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125180651_87648.png&quot; alt=&quot;&quot; width=&quot;800&quot; height=&quot;466&quot; sizes=&quot;(max-width: 800px) 100vw, 800px&quot; srcset=&quot;https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VLESS与Trojan-gfw及Trojan-Go客户端和服务器端CPU占用情况对比图.png 800w, https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VLESS与Trojan-gfw及Trojan-Go客户端和服务器端CPU占用情况对比图-300x175.png 300w, https://iyideng.me/wp-content/uploads/2020/10/V2Rat自研协议VLESS与Trojan-gfw及Trojan-Go客户端和服务器端CPU占用情况对比图-768x447.png 768w&quot; data-ll-status=&quot;loaded&quot; style=&quot;box-sizing: inherit; border: 0px; height: auto; max-width: 100%; vertical-align: middle;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;虽然 VLESS 已经是轻量版 V2Ray 的 VMess协议，但是在客户端表现对CPU占用仍旧比 Trojan-gfw 和 Trojan-Go 要高；在服务器端 Trojan-Go 优化更出色，对系统CPU资源占用低很多，表现非常好。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; color: rgb(49, 49, 49); font-family: Montserrat, sans-serif; font-weight: 400; line-height: 1.2; margin: 0px 0px 0.5em; transition: color 0.3s ease 0s; font-size: 1.625em; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;5%E3%80%81VLESSTrojanTrojan-Go_%E7%A7%91%E5%AD%A6%E4%B8%8A%E7%BD%91%E5%8D%8F%E8%AE%AE%E6%8E%A8%E8%8D%90&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; font-size: 18pt;&quot;&gt;5、VLESS/Trojan/Trojan-Go 科学上网协议推荐&lt;/span&gt;&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;box-sizing: inherit;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;V2Ray 官方&amp;nbsp; Project V 项目组这样说：&lt;/p&gt;&lt;blockquote style=&quot;box-sizing: inherit; border-left: 4px solid rgb(49, 49, 49); padding-left: 1em; margin: 0px 0px 1em; quotes: &amp;quot;&amp;quot; &amp;quot;&amp;quot;; position: relative; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none;&quot;&gt;尽管 Websocket+TLS+Web 可能称得上是现阶段最好的方案，但绝对不是推荐新手一上来就尝试的方案，更不是 V2Ray 唯一的用法。同时，你应当了解，每个地区的网络状况不同 (主要指对不同协议的 QoS 程度)，你可以将所有配置都尝试一遍来寻找最适合自己的，尽量少问、最好不问“为什么我的 V2Ray 这么慢？”这样的问题。&lt;/p&gt;&lt;/blockquote&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1em; overflow-wrap: break-word; hyphens: none; color: rgb(49, 49, 49); font-family: Ubuntu; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Trojan和V2Ray哪个好？Trojan和V2Ray哪个安全？VMess/VLESS/Trojan/Trojan-Go 哪个协议更快？谁会是科学上网代理的终极协议？毋庸置疑，目前 Trojan-Go 表现最为出色，VLESS和Trojan-GFW性能和速度旗鼓相当，均稍逊于Trojan-Go，而VMess估计要逐渐成为历史了；但 VLESS 作为最新一代的 V2Ray 自研协议，被 Project V 项目组寄予厚望，并作为未来科学上网终极协议来打造。我完全相信 VLESS 以后会有更出色的表现，让我们拭目以待。至于V2Ray跟Trojan相比谁更强？截至目前，VLESS与Trojan-Go之间的差距还是很明显的。&lt;/p&gt;</description><pubDate>Sat, 24 Oct 2020 18:05:04 +0800</pubDate></item><item><title>为Winscp添加代理设置，通过SSR中转连接至服务器</title><link>https://www.superrocket.net/jishu/13.html</link><description>&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255); text-align: center;&quot;&gt;&lt;img class=&quot;alignnone wp-image-770 size-full lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2020/08/20200826165415_58616.png&quot; data-src=&quot;/wp-content/uploads/2020/03/2018-12-25_104138.png&quot; alt=&quot;为Winscp添加代理设置，通过SSR中转连接至服务器&quot; width=&quot;440&quot; height=&quot;300&quot; style=&quot;box-sizing: inherit; vertical-align: middle; border-style: none; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Winscp是我们日常管理VPS服务器的主要工具之一，在部分情况下，会遇到服务器在国内连接速度极慢，甚至无法连接的情况。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;这种情况下，为Winscp添加代理设置，使其通过另一台Shadowsocksr服务器中转流量，就可以解决以上问题。&lt;/p&gt;&lt;h3 style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 0.5rem; line-height: 1.25; font-size: 1.75rem; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; color: rgb(54, 54, 54); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;需要为Winscp添加代理的情况&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;以下为几种可能遇到的情况，通过设置代理可以临时救急。&lt;/p&gt;&lt;ol style=&quot;box-sizing: inherit; margin-bottom: 1.5em; margin-left: 1rem; list-style-position: initial; list-style-image: initial; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;目标服务器暂时网络极差，直接使用Winscp卡顿严重。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;目标服务器SSH端口被阻断，需要连接进行修改。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;目标服务器被TCP阻断，但是需要紧急连接进行设置，比如将SSR的TCP流量转为UDP。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3 style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 0.5rem; line-height: 1.25; font-size: 1.75rem; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; color: rgb(54, 54, 54); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Winscp设置SSR代理流程&lt;/h3&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Winscp这款软件，大家基本都是在Windows电脑上使用，所以下面主要介绍下通过SSR Windows客户端设置代理的过程。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;另外这种设置的前提，是你除了目标服务器外，还拥有一台Shadowsocksr服务器。经常使用SSR的同学，同时拥有两台VPS，应该是比较常见的。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;1.打开SSR Windows客户端，右键点击任备栏小飞机——选项设置。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;2.在选项设置窗口，记住下图位置的本地端口，随后要用：&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone wp-image-766 size-full lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2020/08/20200826165415_39543.jpg&quot; data-src=&quot;/wp-content/uploads/2020/03/2018-12-25_100825.jpg&quot; alt=&quot;为Winscp添加代理设置，通过SSR中转连接至服务器&quot; width=&quot;500&quot; height=&quot;418&quot; style=&quot;box-sizing: inherit; vertical-align: middle; border-style: none; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;3.打开Winscp，选择需要代理的服务器，点击右侧的编辑——高级：&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone wp-image-767 size-full lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2020/08/20200826165415_62586.jpg&quot; data-src=&quot;/wp-content/uploads/2020/03/2018-12-25_100432.jpg&quot; alt=&quot;为Winscp添加代理设置，通过SSR中转连接至服务器&quot; width=&quot;352&quot; height=&quot;218&quot; style=&quot;box-sizing: inherit; vertical-align: middle; border-style: none; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;4.在高级设置窗口中，选择左侧的代理菜单，然后在右侧设置SOCKS5代理，如下图所示：&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone wp-image-768 size-full lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2020/08/20200826165415_38296.jpg&quot; data-src=&quot;/wp-content/uploads/2020/03/2018-12-25_100558.jpg&quot; alt=&quot;为Winscp添加代理设置，通过SSR中转连接至服务器&quot; width=&quot;577&quot; height=&quot;171&quot; style=&quot;box-sizing: inherit; vertical-align: middle; border-style: none; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;5.以上设置完成后，点击服务器编辑界面的保存按钮，使设置成效。&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img class=&quot;alignnone wp-image-769 size-full lazyloaded&quot; src=&quot;https://www.superrocket.net/zb_users/upload/2020/08/20200826165415_92063.jpg&quot; data-src=&quot;/wp-content/uploads/2020/03/2018-12-25_100659.jpg&quot; alt=&quot;为Winscp添加代理设置，通过SSR中转连接至服务器&quot; width=&quot;364&quot; height=&quot;216&quot; style=&quot;box-sizing: inherit; vertical-align: middle; border-style: none; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; margin-top: 0px; margin-bottom: 1rem; color: rgb(100, 100, 100); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;6.然后就可以正常连接VPS服务器了，连接流量会通过另一台SSR服务器代理中转。&lt;/p&gt;</description><pubDate>Wed, 26 Aug 2020 16:53:02 +0800</pubDate></item><item><title>2020年三大流行科学上网协议VLESS/Trojan/NaiveProxy谁更强！NaiveProxy协议一键搭建，NaiveProxy对‎比Trojan及VLESS</title><link>https://www.superrocket.net/jishu/16.html</link><description>&lt;h2 style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-weight: 400; margin: 1.2em 0px 0.6em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; line-height: 1.35; display: flex; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;前言&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;border: 0px; font-family: inherit; font-size: 24px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;这段时间，有一个单词不断的出现在我们的视野之中。热度也是挺高的。这个就是Naiveproxy，有很多小伙伴认为这个代理是最近才出来的，其实非也。Naiveproxy从2019年年末初出江湖，到现在也差不多经过10个月的发展了，只是在爆出V2RAY-VMESS的漏洞新闻之后，Naiveproxy才进入了更多人的眼球，并迅速蔓延。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;其实作者的开发思路很清晰，因为我们使用科学上网协议的混淆、加密的时代已经过去了，很多例子已经证明，混淆本身就会成为一个被攻击或是被审查对象，自己弄的一些加密协议，终归还是敌不过专门研究加密的一些学者所做出的东西。所以作者的思路是采用最常用的浏览器的网络堆栈，来躲避GFW的审查。因为审查常用的浏览器的网络堆栈代价还是很高很高的，所以这样也就大大降低了我们的节点或是VPS，被阻断或是和被墙的风险。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;由于Naiveproxy也算是比较新型的一种软件或是协议，早些时候我们搭建起来还是略显麻烦的，那但现在就不一样了。相信大家也看到了最近比较兴起的一款工具&amp;nbsp;proxySU，这个工具集成了我们常用协议的一键搭建方式，你甚至都不需要登录SSH工具，只需轻点鼠标，就能完成你想搭建的一些科学上网的协议。太TM离谱了，简直就是好多好多人的福音，是吧。那。。。。关注我，为这位大神的辛苦付出点个赞。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;本期评测视频的VPS赞助：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://goii.cc/xxm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击访问 小熊猫云&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;本期博文视频链接：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://youtu.be/fgiRlVemjZA&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击播放&lt;/a&gt;&lt;/p&gt;&lt;h2 style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-weight: 400; margin: 1.2em 0px 0.6em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; line-height: 1.35; display: flex; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;%E5%B7%A5%E5%85%B7%E4%B8%8B%E8%BD%BD&quot; style=&quot;border: 0px; font-family: inherit; font-size: 24px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;工具下载&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;border: 0px; font-family: inherit; font-size: 24px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h3 style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 1.4em; font-weight: 400; margin: 1.2em 0px 0.6em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; line-height: 1.35; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;NaiveProxy_%E5%AE%A2%E6%88%B7%E7%AB%AF&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;NaiveProxy 客户端&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;项目地址：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/klzgrad/naiveproxy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击访问&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;工具下载：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/klzgrad/naiveproxy/releases&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击访问&lt;/a&gt;&lt;/p&gt;&lt;h3 style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 1.4em; font-weight: 400; margin: 1.2em 0px 0.6em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; line-height: 1.35; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;ProxySU_%E4%B8%80%E9%94%AE%E6%90%AD%E5%BB%BA%E5%B7%A5%E5%85%B7&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;ProxySU 一键搭建工具&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;V2ray, Trojan, NaiveProxy, Trojan-Go, ShadowsocksR(SSR),BBR install tools for windows。V2ray，Trojan，NaiveProxy, Trojan-Go, ShadowsocksR(SSR)一键安装工具。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;BBR一键开启（仅支持CentOS8/Debian9/10/Ubuntu18.04及以上）,支持语言:English、简体中文、正体（繁体）中文。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125175826_82802.png&quot; loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-109196 loading&quot; width=&quot;772&quot; height=&quot;922&quot; data-was-processed=&quot;true&quot; style=&quot;max-width: 100%; height: auto; object-fit: unset; vertical-align: bottom; image-rendering: -webkit-optimize-contrast;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;项目地址：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/proxysu/windows&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击访问&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;工具下载：&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/proxysu/windows/releases&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;点击访问&lt;/a&gt;&lt;/p&gt;&lt;h3 style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 1.4em; font-weight: 400; margin: 1.2em 0px 0.6em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; line-height: 1.35; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;ez-toc-section&quot; id=&quot;QV2RAY%EF%BC%88%E6%94%AF%E6%8C%81WIN/MACOS%EF%BC%89&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;QV2RAY（支持WIN/MACOS）&lt;span class=&quot;ez-toc-section-end&quot; style=&quot;border: 0px; font-family: inherit; font-size: 22.4px; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.superrocket.net/zb_users/upload/2021/01/20210125175826_23149.png&quot; loading=&quot;lazy&quot; class=&quot;alignnone size-full wp-image-109197 loading&quot; width=&quot;700&quot; height=&quot;614&quot; data-was-processed=&quot;true&quot; style=&quot;max-width: 100%; height: auto; object-fit: unset; vertical-align: bottom; image-rendering: -webkit-optimize-contrast;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/Qv2ray/releases/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;QV2RAY 下载地址&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/v2ray/v2ray-core/releases&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;QV2RAY 内核下载地址&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;一个 Qv2ray 插件，技术上地说，是一个实现了&amp;nbsp;&lt;code style=&quot;border: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 14px; line-height: 26px; font-family: Monaco, Consolas, &amp;quot;Andale Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, monospace; margin: 0px; outline: 0px; padding: 2px; vertical-align: baseline; box-sizing: border-box; white-space: pre-wrap; overflow-wrap: break-word; border-radius: 3px; background-color: rgb(238, 238, 238); word-break: break-word; letter-spacing: 0px;&quot;&gt;QvPlugin&lt;/code&gt;&amp;nbsp;接口、从而能扩展 Qv2ray 功能的共享库文件。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;实际上，Qv2ray 插件是 Qv2ray 的扩展，能让你使用更多特性。&lt;/p&gt;&lt;p style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-top: 0px; margin-bottom: 1.2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; overflow-wrap: break-word; word-break: break-all; line-height: 1.8; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;当前，Qv2ray 项目组共发布如下 6 个我们维护的插件：&lt;/p&gt;&lt;ul style=&quot;border: 0px; font-family: font-regular, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 16px; margin-bottom: 1.2em; margin-left: 2em; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box; list-style-position: initial; list-style-image: initial; color: rgb(51, 51, 51); white-space: normal; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-SS&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-SS&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中启用 Shadowsocks SIP003 完整支持&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-SSR&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-SSR&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 ShadowsocksR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-Trojan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-Trojan&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 Trojan&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-NaiveProxy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-NaiveProxy&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 NaiveProxy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-Command&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-Command&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 当特殊事件发生时，运行任意指定的命令&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.v2rayssr.com/go?url=https://github.com/Qv2ray/QvPlugin-Trojan-Go&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: inherit; margin: 0px; outline: 0px; padding: 0px; vertical-align: top; box-sizing: border-box; color: rgb(30, 115, 190); text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;span style=&quot;border: 0px; font-family: inherit; font-style: inherit; font-weight: 700; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline; box-sizing: border-box;&quot;&gt;QvPlugin-Trojan-Go&lt;/span&gt;&lt;/a&gt;&amp;nbsp;– 让你能在 Qv2ray 中使用 Trojan-Go&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;source&amp;nbsp;&amp;lt;(curl&amp;nbsp;-sL&amp;nbsp;https://git.io/trojan-install)&lt;/pre&gt;&lt;pre class=&quot;prism-highlight prism-language-actionscript&quot;&gt;source&amp;nbsp;&amp;lt;(curl&amp;nbsp;-sL&amp;nbsp;https://git.io/trojan-install)&lt;/pre&gt;</description><pubDate>Tue, 25 Aug 2020 11:56:26 +0800</pubDate></item></channel></rss>