Hide Forgot
Description of problem: In Fedora 14 and earlier, /proc/net/nf_conntrack included fields for number of bytes and number of packets. In Fedora 15, it does not. Version-Release number of selected component (if applicable): How reproducible: Very Steps to Reproduce: Look at /proc/net/nf_conntrack in F14 and F15. Actual results: Example of a nf_conntrack row under F15: ipv4 2 tcp 6 294968 ESTABLISHED src=192.168.4.220 dst=184.8.157.84 sport=6005 dport=41604 src=184.8.157.84 dst=75.10.132.226 sport=41604 dport=6005 ... Expected results: Comparable example of a row under F14; note the inclusion of "packets" and "bytes" fields: ipv4 2 tcp 6 294968 ESTABLISHED src=192.168.4.220 dst=184.8.157.84 sport=6005 dport=41604 packets=12345 bytes=23456 src=184.8.157.84 dst=75.10.132.226 sport=41604 dport=6005 packets=12345 bytes=23456 ... Additional info: The boxes I am testing on were on F14 until I upgraded to F15.
Hi, I do not think this is a bug in nfswatch. Are you positive you selected the right component ?
I have no idea what the right component is. The bug submission form instructed me that, if I don't know the answer, I should guess. If you have a recommendation, I will update this bug report.
/proc is stuff from the kernel, so my guess would be to put "kernel" as the component.
I've switched it to "kernel".
Connection tracking accounting is no longer enabled by default. Use the nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
That took care of it; thanks!