Linux搭建Socks5网络代理服务器,Centos 8 系统
warning:
这篇文章距离上次修改已过235天,其中的内容可能已经有所变动。
在CentOS 8上搭建Socks5代理服务器,可以使用dante-server
。以下是安装和配置的步骤:
- 安装
dante-server
:
sudo dnf install dante-server
- 编辑配置文件
/etc/danted.conf
,配置Socks5代理:
logoutput: stderr
user.privileged: root
user.unprivileged: nobody
# 设置监听地址和端口
listener:
0.0.0.0:1080
# 允许的客户端范围
client:
# 允许所有地址
pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
}
# 代理规则
socks5:
# 允许所有地址通过Socks5
pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect disconnect error
}
# 认证方式
auth:
# 无认证
none {
from: 0.0.0.0/0 to: 0.0.0.0/0
}
- 启动
dante-server
:
sudo systemctl start danted
- 设置
dante-server
开机自启:
sudo systemctl enable danted
现在你的Socks5代理服务器已经运行在CentOS 8上,监听1080端口。你可以使用任何支持Socks5代理的应用程序来配置这个服务器。
评论已关闭