I'd like to do an iptables REDIRECT
rule in the NAT PREROUTING
chain, to redirect connections to port 80 to go to 8080. But I'd like to only do it for input packets (destined for this machine), not forwarded packets (destined for e.g. the Internet).
Is there a way, in rules in the PREROUTING
chain, to distinguish packets that are destined for this machine, versus packets that are being forwarded, and handle them differently?
It would be ideal to do this in a way that doesn't require specific interfaces or IP addresses to be enumerated in the rules, because this is less flexible (e.g. if interfaces or IP addresses change, it's more complicated to then need to update iptables rules).
I would also be interested in an equivalent functionality using nftables.