Skip to content
Michael.X edited this page Aug 8, 2023 · 6 revisions

1. 下载

登陆 https://xx-net.com 进入下载页面,选择下载Linux版
Screenshot(1)

2. 解压

命令行:
unzip XX-Net-linux-5.0.3.zip

3. 启动

cd XX-Net
./start

如果需要远程进行配置,可以用下面的命令启动:
./start -allow_remote

4. 登陆

启动浏览器,访问 http://localhost:8085
Screenshot

输入用户名、密码登陆.
对于没有图形界面的linux,可以考虑把其他电脑上已经登录好的XX-Net下,把data目录拷贝过来使用。

5. Firefox 设置代理插件

6. 使用Chrome浏览器插件切换代理

安装和使用-SwitchyOmega

7. 其他代理工具

  • tsocks
    优点:支持ipv6
    缺点:不代理域名解析请求
    安装:apt install tsocks
    配置:编辑 /etc/tsocks.conf

       server = 127.0.0.1
       server_type = 5
       server_port = 1080
    

    使用:
    # tsocks curl https://github.com

  • proxychains
    优点:可以代理域名解析
    缺点:不支持ipv6
    配置: 编辑 /etc/proxychains.conf

    [ProxyList]
    socks5 127.0.0.1 1080
    

    使用方法:
    # proxychains curl https://github.com

一般情况下用proxychains就好了,需要ipv6时再使用tsocks

8. curl 使用代理工具

curl --proxy socks5://localhost:1080 https://www.google.com

Clone this wiki locally