How to block access to the list of the sites and show a notification page?
This example blocking without a page, work correctly:
iptables -I FORWARD -m set --match-set site src,dst -j DROP
I try to use the next rule for hosts redirect to another server with a page:
iptables -I FORWARD -m set --match-set redirectsites src,dst -j DNAT --to-destination ipaddr
Could you explain, what is wrong on the rule above? Thank you for your answers.