1 Jun
2018
1 Jun
'18
3:45 p.m.
On Fri, 1 Jun 2018, 14:47 siefke_listen@web.de, <siefke_listen@web.de> wrote:
Hello,
I want use ad blocking with iptables so I found ipset which make life easier. My question is how it work with Output format?
iptables -I OUTPUT -m set --match-set adblock src -j REJECT
will this work? I be not really sure and most what found
about ipset is input.
Thanks for help Silvio
Since you want to block the destination IP, not the source IP, you should use: -A OUTPUT -m set --match-set adblock dst -j REJECT I usually also add "--reject-with icmp-host-prohibited", that makes the detection of the blocked host easier: -A OUTPUT -m set --match-set adblock dst -j REJECT --reject-with icmp-host-prohibited