搭建Telegram代理服务

0x00 代理服务

搭建代理服务两种常见方式:

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_addressserver字段修改为一样,也可以设置为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


Powered by Jekyll and Theme by solid