在VPS上安装SOCKS代理服务器Dante 2023-01-31 Website News 暂无评论 1530 次阅读 #1、通过 SSH 连接到 运行代理服务器的 VPS。确保你有你的 apt 包更新和一个文本编辑器,如 nano 首先安装: ```csharp apt-get update && apt-get upgrade apt-get install nano ``` #2、安装Socks代理Dante; ```csharp apt-get install dante-server ``` #3、将Dante原始配置做一下备份; ```csharp mv -f /etc/danted.conf /etc/danted.conf.bak ``` #4、创建一个新的配置文件 ```csharp nano /etc/danted.conf ``` #5、将一下配置内容直接复制后黏贴到新的配置文件中; ```csharp logoutput: /var/log/socks.log internal: enet0:0 port = 1080 internal: 127.0.0.1 port = 180 external: enet0:0 method: username #rfc931 clientmethod: none user.privileged: root user.notprivileged: nobody user.libwrap: nobody client pass { from: 0.0.0.0/0 port 1-65535 to: 0.0.0.0/0 log: connect disconnect error } pass { from: 0.0.0.0/0 to: 0.0.0.0/0 command: bind connect udpassociate log: error # connect disconnect iooperation method: username } ``` #6、完成后,您就可以通过运行以下命令来启动代理服务器; ```csharp service danted restart ``` #7、为确保服务器正在运行,您可以运行以下命令,如果没有返回,请查看指南并查看您错过了哪一步或检查您的配置。另一种检查方法是日志,代理服务器的日志位于 /var/log/socks.log 中; ```csharp netstat -tulnp | grep 1080 ``` #8、如果它正在运行,您应该会看到类似于此的结果; ```csharp tcp 0 0 x.x.x.x:1080 0.0.0.0:* LISTEN 18395/danted ``` 标签: VPS, socks, dante, 代理服务器 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭