mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Document usage of redir://
This commit is contained in:
parent
f07623e943
commit
0019253bd0
12
USAGE.txt
12
USAGE.txt
@ -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>]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user