socks5 代理

Posted anjuncc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了socks5 代理相关的知识,希望对你有一定的参考价值。

iptables -t nat -N REDSOCKS

iptables -t nat -A REDSOCKS -d 0.0.0.0/8 -j RETURN
iptables -t nat -A REDSOCKS -d 10.0.0.0/8 -j RETURN
iptables -t nat -A REDSOCKS -d 127.0.0.0/8 -j RETURN
iptables -t nat -A REDSOCKS -d 169.254.0.0/16 -j RETURN
iptables -t nat -A REDSOCKS -d 172.16.0.0/12 -j RETURN
iptables -t nat -A REDSOCKS -d 192.168.0.0/16 -j RETURN
iptables -t nat -A REDSOCKS -d 224.0.0.0/4 -j RETURN
iptables -t nat -A REDSOCKS -d 240.0.0.0/4 -j RETURN

#iptables -t nat -A OUTPUT -p tcp -m owner --uid-owner root -j

iptables -t nat -A REDSOCKS -p tcp -j REDIRECT --to-ports 1080

groupadd socksified
usermod --append --groups socksified anjun
iptables -t nat -A OUTPUT -p tcp -m owner --gid-owner socksified -j REDSOCKS
sg socksified -c id

以上是关于socks5 代理的主要内容,如果未能解决你的问题,请参考以下文章

如何在Linux下配置socks5代理

如何正确认识socks5代理ip

Socks5代理Socks5 Proxy

虚拟机中使用本机的socks5代理

SOCKS5代理的介绍

如何在Linux下配置socks5代理