ufw: default IPv6 policy not set on boot when IPV6=no
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| ufw (Ubuntu) |
Undecided
|
Jamie Strandboge | ||
| Hardy |
Undecided
|
Jamie Strandboge |
Bug Description
Binary package hint: ufw
According to the comment in /etc/default/ufw, when IPV6=no, IPV6 is only accepted on loopback. According to ip6tables, this is misleading because it actually defaults to ACCEPT on inbound, outbound, and forward with no further rules. According to the ufw manpage, IPv6 must be enabled in /etc/default/ufw to work, so the comment disagrees with that as well.
"sudo ufw enable" currently only enables IPv4 firewalling. This is bad, and it is caused by the IPV6=no setting in /etc/default/ufw This line should default to IPV6=yes
Jamie Strandboge (jdstrand) wrote : | #1 |
Changed in ufw: | |
assignee: | nobody → jdstrand |
status: | New → Triaged |
Mackenzie Morgan (maco.m) wrote : | #2 |
IPv6 is enabled by default in Ubuntu *in general* though.
What I did:
sudo ufw enable
sudo ufw default deny
iptables -nL
ip6tables -nL
iptables shows DROP on in and forward. ip6tables shows ALLOW on all.
Then:
Edit the /etc/default/ufw to say IPV6=yes
ip6tables -nL
DROP on inbound and forward. ALLOW on out.
Is it intentional as documented in the manpage, or is it a bug as implied in /etc/default/ufw? They disagree on what this line does.
Jamie Strandboge (jdstrand) wrote : | #3 |
The intent is to have default IPV6=no. With this setting, only IPV6 on loopback is accepted, otherwise DROP. the 'ufw enable' command does do this properly, but the bug is that /etc/init.d/ufw does not, so on reboot you get default ACCEPT rather than the documented (and intended) default DROP with allowed loopback.
description: | updated |
Changed in ufw: | |
status: | Triaged → In Progress |
Changed in ufw: | |
status: | In Progress → Fix Committed |
Jamie Strandboge (jdstrand) wrote : | #4 |
SRU Request
I. ufw in it's default configuration uses IPV6=no in /etc/default/ufw. The intended and documented behavior of this setting is to use a default DROP policy with connections allowed on the loopback interface only. The current version does not do this when using the /etc/init.d/ufw script, which means that though IPV6=no, the default policy for the INPUT, OUTPUT and FORWARD chains is ACCEPT on boot.
II. this has been fixed in 0.18.2 (will be uploaded after alpha freeze). /etc/init.d/ufw has been adjusted to set the default policy of DROP when IPV6=no (/usr/sbin/ufw uses the /etc/init.d/ufw when running 'enable', so enable will still work as before).
III. debdiff is attached that addresses this bug and bug #194844 (also SRU candidate)
IV. TEST CASE (need a kernel which supports ipv6 and ip6_tables (basically, any but -virtual):
1. make sure /etc/default/ufw has 'IPV6=no'
2. sudo ufw enable
3. sudo ip6tables -n -L (shows default DROP policy with allowed connections on loopback)
4. sudo /etc/init.d/ufw force-reload
5. sudo ip6tables -n -L (shows default ACCEPT policy, should be same as in step 3)
V. The regression potential is considered low. While the default behavior on boot has changed (to be what is documented), in practice users will have used 'ufw enable' to enable the firewall and tested that the rules work as expected. 'ufw enable' sets the default policy to DROP, so user's would have noticed IPv6 connectivity being blocked at this stage, and adjusted the rules accordingly. It was only after a reboot that the IPv6 policy is changed to the more lenient ACCEPT policy.
Changed in ufw: | |
assignee: | nobody → jdstrand |
status: | New → Confirmed |
Jamie Strandboge (jdstrand) wrote : | #5 |
Martin Pitt (pitti) wrote : | #6 |
Accepted into -proposed, please test and give feedback here. Please see https:/
Changed in ufw: | |
status: | Confirmed → Fix Committed |
Launchpad Janitor (janitor) wrote : | #7 |
This bug was fixed in the package ufw - 0.18.2
---------------
ufw (0.18.2) intrepid; urgency=low
* fix confusing error output when ipv6 or ip6_tables is not available.
Patch from trunk. (LP: #194844)
* fix initscript not setting default ipv6 policy when IPV6=no (LP: #251355)
* update ucf checksums to include those from 0.16.2
* bump version
-- Jamie Strandboge <email address hidden> Fri, 11 Jul 2008 18:38:58 -0400
Changed in ufw: | |
status: | Fix Committed → Fix Released |
Jamie Strandboge (jdstrand) wrote : | #8 |
Confirmed 0.16.2.3 fixes the above test case. Also, using IPV6=yes continues to work as expected (ie ufw6-* chains are all appropriately added) as does the /etc/init.d/ufw exiting appropriately when ufw is disabled via 'sudo ufw disable'.
Daniel T Chen (crimsun) wrote : | #9 |
Confirmed fixed on a freshly updated 8.04.1 amd64 install, thanks.
(Mackenzie and I noticed this one while at HOPE.)
Martin Pitt (pitti) wrote : | #10 |
Copied to hardy-updates.
Changed in ufw: | |
status: | Fix Committed → Fix Released |
Thank you for using Ubuntu and taking the time to report a bug. Enabling IPv6 by default at this point in time is IMO not a good idea generally, as it is not in widespread use. IPv6 users can easily enable it if needed. This issue can of course be revisited when IPv6 is more widely deployed.
When IPv6=no, and a user runs 'ufw enable' (perhaps running disable before), the chains are default DROP as stated in the documentation. However, there is a bug in the initscript that doesn't set IPv6 up correctly on boot. This will be addressed in a future release.