PortMirroringDDWRTiptables: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
(Created page with '<pre> iptables -A PREROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee iptables -A POSTROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee </pre>')
 
No edit summary
 
Line 1: Line 1:
<pre>
<syntaxhighlight lang=bash>
iptables -A PREROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee
iptables -A PREROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee
iptables -A POSTROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee
iptables -A POSTROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee
</pre>
</syntaxhighlight>

Latest revision as of 01:23, 25 January 2018

iptables -A PREROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee
iptables -A POSTROUTING -t mangle -j ROUTE --gw 192.168.15.20 --tee