月下博客

Trojan史上最全面的脚本!Trojan所有脚本集合!Trojan面板,单Trojan服务!

前言

很多小伙伴找Trojan脚本也是够了,到处都是。特别是一些新手小伙伴,根本不晓得应该用哪一个脚本,今天作者为大家整理出了常用一些Trojan脚本,并且详细的叙述一些脚本的功能和安装步骤!

Trojan搭建失败?作者收集了市面上稳定性最高的一些脚本供大家自行选择。

通用的准备工作

Trojan客户端

正在制作

Trojan脚本合集

一、Jrohy的一键Trojan面板脚本 (推荐)

特点

本脚本详细博文:点击访问

#安装/更新
source <(curl -sL https://git.io/trojan-install)
#卸载
source <(curl -sL https://git.io/trojan-install) --remove

二、官方Trojan脚本

特点

原汁原味的官方味道,免得说脚本挖了你的矿。

官方GitHub地址:点击访问

脚本如下:

apt install sudo  #debian
yum install sudo  #contos
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/trojan-gfw/trojan-quickstart/master/trojan-quickstart.sh)"

注意事项:
官方脚本需要自己设置服务器配置,包括密码、证书等,设置路径为: /usr/local/etc/trojan.config.json

三、Trojan全智能一键安装脚本

特点

自动获取Trojan官方最新版本进行部署,全智能化。

本脚本详细博文:点击访问

yum -y install wget    ##ContOS Yum 安装 wget
apt-get install wget   ##Debian Ubuntu 安装 wget
wget -N --no-check-certificate -q -O trojan_install.sh "https://raw.githubusercontent.com/V2RaySSR/Trojan/master/trojan_install.sh" && chmod +x trojan_install.sh && bash trojan_install.sh

四、Trojan单服务搭建三部曲

特点

分解一键脚本,兼容性高,出问题好解决,特别是证书。

本脚本详细博文:点击访问

此脚本分三部分搭建纯粹的Trojan服务,解决了证书出错的问题

wget -N --no-check-certificate "https://raw.githubusercontent.com/V2RaySSR/Trojansh/master/trojan1.sh" && chmod +x trojan1.sh && ./trojan1.sh
wget -N --no-check-certificate "https://raw.githubusercontent.com/V2RaySSR/Trojansh/master/trojan2.sh" && chmod +x trojan2.sh && ./trojan2.sh
wget -N --no-check-certificate "https://raw.githubusercontent.com/V2RaySSR/Trojansh/master/trojan3.sh" && chmod +x trojan3.sh && ./trojan3.sh