mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
docs: tproxy: ignore non-transparent sockets in iptables
The iptables example was added in commitd2f26037a3
(netfilter: Add documentation for tproxy, 2008-10-08), but xt_socket 'transparent' option was added in commita31e1ffd22
(netfilter: xt_socket: added new revision of the 'socket' match supporting flags, 2009-06-09). Now add the 'transparent' option to the iptables example to ignore non-transparent sockets, which is also consistent with the nft example. Signed-off-by: 谢致邦 (XIE Zhibang) <Yeking@Red54.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
2cadd3b177
commit
aa758763be
@ -17,7 +17,7 @@ The idea is that you identify packets with destination address matching a local
|
||||
socket on your box, set the packet mark to a certain value::
|
||||
|
||||
# iptables -t mangle -N DIVERT
|
||||
# iptables -t mangle -A PREROUTING -p tcp -m socket -j DIVERT
|
||||
# iptables -t mangle -A PREROUTING -p tcp -m socket --transparent -j DIVERT
|
||||
# iptables -t mangle -A DIVERT -j MARK --set-mark 1
|
||||
# iptables -t mangle -A DIVERT -j ACCEPT
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user