搭建Telegram代理服务
0x00 代理服务
搭建代理服务两种常见方式:
- shadowsocks
- socks5
1. Shadowsocks服务
具体搭建步骤可参考
https://shadowsocks.org/en/download/servers.html
其中配置文件如下
{
"server":"my_server_ip",
"server_port":8388,
"local_address":"0.0.0.0",
"local_port":1080,
"password":"barfoo!",
"timeout":600,
"method":"aes-256-cfb"
}
通过命令启动便可以Shadowsocks服务
ssserver -c config.json -d restart
通过修改Shadowsocks的配置文件,将local_address
与server
字段修改为一样,也可以设置为0.0.0.0
,这时shadowsocks
服务也可以支持socks5
然后再通过以下命令启动socks5代理服务(shadowsocks服务必须也要启动)
nohup sslocal -c config.json > ss.log&
2. Socks5搭建
具体搭建步骤可参考
https://github.com/wyx176/Socks5
0x01 MTProxy 代理搭建
Telegram
使用的是自家通信协议MTProto
,而其本身也提供了基于MTProto
的代理方式,更加轻便有效,针对Telegram
的代理,推荐使用MTProxy
具体搭建步骤可参考
https://github.com/TelegramMessenger/MTProxy
0x02 supervisor
find / -name supervisor.sock
unlink /name/supervisor.sock
https://blog.csdn.net/LHWorldBlog/article/details/78518696
- 上一篇 【干货】入门区块链技术看这里就够了
- 下一篇 Android后台单进程保活处理实践