Document usage of redir://

This commit is contained in:
klzgrad 2019-09-28 13:33:33 +00:00
parent 140a3913ad
commit 7929e0850e

View File

@ -34,8 +34,16 @@ Options:
--listen=<proto>://[addr][:port]
Listens at addr:port with protocol <proto>. Allowed values for
proto: "socks", "http". The default proto is socks. The default
addr is 0.0.0.0. The default port is 1080.
proto: "socks", "http", "redir". The default proto is socks.
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>]