Document usage of redir://

This commit is contained in:
klzgrad 2019-09-28 13:33:33 +00:00
parent f07623e943
commit 0019253bd0

View File

@ -34,8 +34,16 @@ Options:
--listen=<proto>://[addr][:port] --listen=<proto>://[addr][:port]
Listens at addr:port with protocol <proto>. Allowed values for Listens at addr:port with protocol <proto>. Allowed values for
proto: "socks", "http". The default proto is socks. The default proto: "socks", "http", "redir". The default proto is socks.
addr is 0.0.0.0. The default port is 1080. The default addr is 0.0.0.0. The default port is 1080.
For redirecting local traffic from the same machine:
iptables -t nat -A OUTPUT -p tcp -d ... -j REDIRECT --to-ports 1080
For redirecting forwarded traffic on a router:
iptables -t nat -A PREROUTING -p tcp -d ... -j REDIRECT --to-ports 1080
--proxy=<proto>://[<user>:<pass>@]<hostname>[:<port>] --proxy=<proto>://[<user>:<pass>@]<hostname>[:<port>]