vote up 0 vote down star

Hi guys,

I am working on a iptables rule to apply after my shorewall script has initialized my firewall. I want a spicific IP (10.0.1.19) address in my lan to be redirected to 10.0.64.1 except if it is going to paypal.

I have the following rule, and that works like a charm

iptables -t nat -A PREROUTING ! -d 1.2.3.4 -s 10.0.1.19 -j DNAT --to 10.0.64.1

My problem is that paypal uses multiple ip addresses, and I am not allowed to have multiple IP-addresses.

https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std%5Fadp.php?p%5Ffaqid=92

On top of this problem I would like to know how to remove the rule again, without having to restart shorewall.

Kind regards

Tax

This is more of a ServerFault question than a stackoverflow one. However you can delete rules from iptables with "iptables -t nat -D rulenumber" and there are iptables modules that allow you to match multiple IP addresses. If you don't have such a module you'll have to add several rules. Anyway you can find all answers in iptables excelent documentation. – Miguel Ventura Oct 27 at 19:04

migrated to serverfault.com by Dana, Jefromi, Brandon, Jerry Coffin, OMG Ponies Oct 27 at 19:23

Browse other questions tagged or ask your own question.