Bug 375581
| Summary: | a netfiter module re-enables ipv6 when disabled | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Jerry Vonau <jvonau3> |
| Component: | kernel | Assignee: | Kernel Maintainer List <kernel-maint> |
| Status: | CLOSED UPSTREAM | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | high | Docs Contact: | |
| Priority: | low | ||
| Version: | 8 | CC: | sconklin, twoerner |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2007-11-27 04:06:19 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Jerry Vonau
2007-11-11 07:08:25 UTC
I can reproduce the problem here. nf_conntrack_h323 has a dependency on the ipv6 module. This is not an iptables userland problem, therefore assigning to kernel. The missing symbol is: ip6_route_output There's no clean way to remove the dependancy other than to fork the h323 code into a seperate ip6 version, which would be 99% the same (other than that function) which seems like ridiculous overkill. There's no quick fix here, so if having ipv6.ko loaded is an issue for you, I'd suggest to bring it up with the upstream networking developers on netdev.org Nothing should override a system configuration option. I think it would be best if nf_conntrack_h323 couldn't load, if ipv6 was not already loaded. It should refuse to load if ipv6 is disabled, like in this post: https://bugzilla.novell.com/show_bug.cgi?id=334057 If all else fails, rename or erase ipv6.ko FYI Fixed upstream: http://marc.info/?l=netfilter-devel&m=119676981314842&w=4 |