通过dante搭建匿名socks5代理
發表於(2018-09-07 11:34:53) 閱讀(
69) | 評論(
0)
0人收藏此文章,
apt-get install dante-server
mv /etc/danted.conf /etc/danted.conf.bak
touch /etc/danted.conf
nano /etc/danted.conf
匿名配置内容
logoutput: /var/log/danted.log
internal: 你的外網IP地址 port = 1080
external: 你的外網IP地址
method: username none
user.privileged: proxy
user.notprivileged: nobody
user.libwrap: nobody
client pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect disconnect
}
pass {
from: 0.0.0.0/0 to: 0.0.0.0/0 port gt 1023
command: bind
log: connect disconnect
}
pass {
from: 0.0.0.0/0 to: 0.0.0.0/0
command: connect udpassociate
log: connect disconnect
}
block {
from: 0.0.0.0/0 to: 0.0.0.0/0
log: connect error
}
service danted start
|