There was an error while loading. Please reload this page.
登陆 https://xx-net.com 进入下载页面,选择下载Linux版
命令行: unzip XX-Net-linux-5.0.3.zip
unzip XX-Net-linux-5.0.3.zip
cd XX-Net ./start
cd XX-Net
./start
如果需要远程进行配置,可以用下面的命令启动: ./start -allow_remote
./start -allow_remote
启动浏览器,访问 http://localhost:8085
输入用户名、密码登陆. 对于没有图形界面的linux,可以考虑把其他电脑上已经登录好的XX-Net下,把data目录拷贝过来使用。
安装和使用-SwitchyOmega
tsocks 优点:支持ipv6 缺点:不代理域名解析请求 安装:apt install tsocks 配置:编辑 /etc/tsocks.conf
server = 127.0.0.1 server_type = 5 server_port = 1080
使用: # tsocks curl https://github.com
# tsocks curl https://github.com
proxychains 优点:可以代理域名解析 缺点:不支持ipv6 配置: 编辑 /etc/proxychains.conf
[ProxyList] socks5 127.0.0.1 1080
使用方法: # proxychains curl https://github.com
# proxychains curl https://github.com
一般情况下用proxychains就好了,需要ipv6时再使用tsocks
curl --proxy socks5://localhost:1080 https://www.google.com