Adelson O. Junior wrote: > Hi netfiltel mail list, > it's my first time here. > > My question is: > I'm trying to delete a entry in the conntrack and an Error is shown: > > "NFNETLINK answers: No such file or directory" > > I did a "small" search on the Internet, mail list and I saw that this > is a bug and is already fixed. > Can you tell if this is true, and if is, what the version of > libnfnetlink, libnetfilter_conntrack or > conntrack packets (and witch of them have a problem) that the bug is fixed? Could you post the command line invocation of `conntrack' that you're using? It seems to me that you're omitting some required values. Old versions require source and destination IP plus port source and destination to work, ie. conntrack -D -s 140.x.x.90 -d 213.x.x.117 -p tcp --sport 34075 --dport 993 As said, probably you're omitting any of those parameters. Some old versions of the tool do not perform strict checking on the input parameters. Thus, leading to this sort of errors. The current version (0.9.7) supports more flexible conntrack deletion, eg. conntrack -D -d 213.x.x.117 This invocation destroys all entries that match that. -- "Los honestos son inadaptados sociales" -- Les Luthiers -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html