Closed widmoser closed 7 years ago
When running the role multiple times, the forwarding rules accumulate, because iptables -F does not remove them.
iptables -F
Suggestion: iptables -F -t nat seems to resolve the issue.
iptables -F -t nat
Interesting... I hadn't noticed that but haven't looked to closely on the servers where I have forwarding rules. I'll test to verify.
When running the role multiple times, the forwarding rules accumulate, because
iptables -F
does not remove them.Suggestion:
iptables -F -t nat
seems to resolve the issue.