博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
搭建 sock5代理服务器
阅读量:6592 次
发布时间:2019-06-24

本文共 968 字,大约阅读时间需要 3 分钟。

 

在linux环境下搭建sock5代理服务器
用到软件是dante-1.4.0-pre1.tar.gz
下载地址是http://www.inet.no/dante/download.html
 
tar -zxvf dante-1.4.0-pre1.tar.gz
cd dante-1.4.0-pre1
./configure --prefix=/usr/local/dante
make
make install
 
配置文件默认是在/etc/sockd.conf需要手动建立,配置文件说明详情见官方网站,下面的是简单的配置文件,接受所有的代理请求,不需要认证。
 
vim /etc/sockd.conf
 
logoutput: /var/log/sockd.log                ###日志文件地址
#debug: 1
 
internal: 192.168.1.198 port = 1080    ###接入口的ip地址和端口
external: eth0                                      ###出口的网卡号,我这个进出口是同一个
 
user.notprivileged: sockd                      ###以sockd账户启动服务
 
clientmethod: none
method: none
 
client pass {
        from: 192.168.1.0/24 to: 0.0.0.0/0
        log: error # connect disconnect
}
 
pass {
        from: 0.0.0.0/0 to: 0.0.0.0/0
        command: bind connect udpassociate
        log: error # connect disconnect iooperation
}
 
pass {
        from: 0.0.0.0/0 to: 0.0.0.0/0
        command: bindreply udpreply
        log: error # connect disconnect iooperation
}
 
新建个运行服务的账户sockd
接着可以运行sockd服务了
 
/usr/local/dante/sbin/sockd  -D
 
最后在应用里面就可以用socks5代理了
本文转自 hb_fukua 51CTO博客,原文链接:http://blog.51cto.com/2804976/1073004

转载地址:http://lduio.baihongyu.com/

你可能感兴趣的文章
postgresql 数组类型
查看>>
Vue+Webpack常见问题(持续更新)
查看>>
栈与递归的实现
查看>>
Manually Summarizing EIGRP Routes
查看>>
spring boot 1.5.4 整合webService(十五)
查看>>
modsecurity(尚不完善)
查看>>
获取.propertys文件获取文件内容
查看>>
Redis3.0.5配置文件详解
查看>>
Know about Oracle RAC Heartbeat
查看>>
JQuery——实现Ajax应用
查看>>
前端05.js入门之BOM对象与DOM对象。
查看>>
oracle kill所有plsql developer进程
查看>>
keepalived双机热备原理及实例部署LVS+keepalived
查看>>
曲线学习PyQt5方案一
查看>>
企业私有云之rabbitmq高可用
查看>>
OpenCV学习】矩阵运算和操作2
查看>>
nginx+ffmpeg搭建rtmp转播rtsp流的flash服务器
查看>>
Win10 IoT C#开发 1 - Raspberry安装IoT系统及搭建开发环境
查看>>
关于在arm裸板编程时使用printf问题的解决方法
查看>>
开源人工智能技术将改变一切
查看>>