Bug 67835
| Summary: | iptables can't DNAT OUTPUT packets any longer | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Alexandre Oliva <aoliva> |
| Component: | kernel | Assignee: | Arjan van de Ven <arjanv> |
| Status: | CLOSED RAWHIDE | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 7.3 | CC: | l_magnus_j |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | athlon | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2003-01-23 15:34: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
Alexandre Oliva
2002-07-02 18:22:39 UTC
Looks like this is just because kernel.config says:
# CONFIG_IP_NF_NAT_LOCAL is not set
and ip_nat_rule does:
#ifndef CONFIG_IP_NF_NAT_LOCAL
if (hook_mask & (1 << NF_IP_LOCAL_OUT)) {
DEBUGP("DNAT: CONFIG_IP_NF_NAT_LOCAL not enabled\n");
return 0;
}
#endif
but why is this feature disabled by default?
I see this is fixed in the pheobe beta2 kernel, in that IP_NF_NAT_LOCAL is built as a module. Can't tell for how long it's been fixed, but thanks! |