Sorry. A bit more reading (and testing) shows that one more thing must be done:
Code:
echo 0 > /proc/sys/net/netfilter/nf_conntrack_helper
To make the above change persistent across reboots, edit
/etc/sysctl.conf or create
/etc/sysctl.d/99-localfix.conf (for Ubuntu/Debian):
Code:
# Disable iptables deprecated helpers
# https://home.regit.org/netfilter-en/secure-use-of-helpers/
net.netfilter.nf_conntrack_helper=0
This will shut down the iptables connection tracking helpers totally. This disables support for a bunch of protocols (most of which you probably don't use anyway):
ftp, irc, sane, sip, tftp, amanda, h323, netbios_ns, pptp & snmp
Read the blog post linked above for details.