RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 656334 - Default Firewall blocking DHCPv6
Summary: Default Firewall blocking DHCPv6
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: system-config-firewall
Version: 6.0
Hardware: All
OS: Linux
low
high
Target Milestone: rc
: ---
Assignee: Thomas Woerner
QA Contact: qe-baseos-daemons
URL:
Whiteboard:
Depends On: 656315 656335 712003 845867
Blocks: 684314
TreeView+ depends on / blocked
 
Reported: 2010-11-23 14:47 UTC by Harald Hoyer
Modified: 2018-11-26 19:29 UTC (History)
8 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of: 656315
: 712003 (view as bug list)
Environment:
Last Closed: 2012-06-25 15:27:40 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Harald Hoyer 2010-11-23 14:47:20 UTC
+++ This bug was initially created as a clone of Bug #656315 +++

Description of problem:

Problem 1: Default Firewall blocking DHCPv6

The default ip6tables configuration was written to replicate the behavior of the default iptables policy.  This is a good thing.  Unfortunately, the default ip6tables policy blocks DHCPv6 traffic, breaking DHCPv6 on the system.  This is because conntrack has no way to track DHCPv6, which uses multicast, so DHCPv6 traffic is not caught by allowing ESTABLISHED,RELATED connections.  The default firewall must be modified to allow DHCPv6 traffic by default.  This means the addition of the following rule:

-A INPUT -p udp --dport 546 -j ACCEPT

Comment 3 Bart Vanbrabant 2010-12-10 15:50:46 UTC
This report also mentions this: #552099

The rule can be more strict:
-A INPUT -m state --state NEW -m udp -p udp --dport 546 --sport 547 -s fe80::/10 -d fe80::/10 -j ACCEPT

Comment 4 Phil Knirsch 2010-12-17 15:05:54 UTC
After several discussions with Thomas Graf and Thomas Woerner the final solution will now be mainly handled via a new kernel module that "does the right thing"(tm). So the only changes we need now at the moment is the kernel module and support in anaconda initially.

Moving this bug to 6.2 to cover how we handle this properly in s-c-f then (aka, lokkit support and new service).

Thanks & regards, Phil

Comment 5 Tim Waugh 2011-06-01 11:54:25 UTC
Is this related to bug #638176?


Note You need to log in before you can comment on or make changes to this bug.