Activity log for bug #1573272

Date Who What changed Old value New value Message
2016-04-21 22:05:28 Zachary Durst bug added bug
2016-04-22 04:32:42 Ubuntu Foundations Team Bug Bot tags bot-comment
2016-04-22 14:43:45 Brian Murray tags bot-comment bot-comment xenial
2016-04-22 14:44:42 Brian Murray affects ubuntu ifupdown (Ubuntu)
2016-09-04 10:39:32 Launchpad Janitor ifupdown (Ubuntu): status New Confirmed
2016-09-04 11:15:28 Bart van Strien bug added subscriber Bart van Strien
2016-09-10 19:05:58 Alberto Salvia Novella ifupdown (Ubuntu): importance Undecided High
2016-09-24 12:06:49 Dan Streetman bug added subscriber Dan Streetman
2016-10-22 05:45:45 Jared Fernandez bug added subscriber Jared Fernandez
2016-11-22 06:29:56 Beck Hsu bug added subscriber beckhsu
2016-11-28 05:32:10 James bug added subscriber James
2017-03-16 16:53:51 Dan Streetman ifupdown (Ubuntu): assignee Dan Streetman (ddstreet)
2017-03-26 09:17:19 Dominique Poulain bug added subscriber Dominique Poulain
2017-03-29 08:26:19 Michael Glad bug added subscriber Michael Glad
2017-03-30 10:00:23 Andrey Omelchenko bug added subscriber Andrey Omelchenko
2017-03-30 13:03:01 Dan Streetman bug task added vlan (Ubuntu)
2017-03-30 13:03:11 Dan Streetman vlan (Ubuntu): assignee Dan Streetman (ddstreet)
2017-03-30 13:03:14 Dan Streetman vlan (Ubuntu): importance Undecided High
2017-03-30 13:03:18 Dan Streetman vlan (Ubuntu): status New In Progress
2017-03-30 13:03:23 Dan Streetman ifupdown (Ubuntu): status Confirmed Invalid
2017-03-30 13:03:53 Dan Streetman nominated for series Ubuntu Aa-series
2017-03-30 13:03:53 Dan Streetman nominated for series Ubuntu Trusty
2017-03-30 13:03:53 Dan Streetman nominated for series Ubuntu Xenial
2017-03-30 13:03:53 Dan Streetman nominated for series Ubuntu Zesty
2017-03-30 13:03:53 Dan Streetman nominated for series Ubuntu Yakkety
2017-03-30 15:48:45 Dan Streetman attachment added lp1573272-trusty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850617/+files/lp1573272-trusty.debdiff
2017-03-30 15:49:07 Dan Streetman attachment added lp1573272-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850618/+files/lp1573272-xenial.debdiff
2017-03-30 15:49:19 Dan Streetman attachment added lp1573272-yakkety.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850619/+files/lp1573272-yakkety.debdiff
2017-03-30 15:49:33 Dan Streetman attachment added lp1573272-zesty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850620/+files/lp1573272-zesty.debdiff
2017-03-30 16:11:50 Dan Streetman bug watch added http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859127
2017-03-30 16:21:44 Dan Streetman description Expectation: After reboot, route for default gateway specified on bonded interface is installed according to "gateway x.x.x.x" (where x.x.x.x is a valid IPv4 address) specified in /etc/network/interfaces or files sourced per /etc/network/interfaces Actual Result: After reboot, route is not installed. Interface does work otherwise (I can ping the gateway on that subnet, for instance). 'ifdown -a' followed by 'ifup -a' (run with proper permission... so sudo) brings the gateway back until next reboot. Package: I'm not familiar enough to be certain what is causing this, but I was seeing this in beta2 of 16.04 as well. *username snipped*@*hostname snipped*:~$ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 *username snipped*@*hostname snipped*:~$ apt-cache policy ifenslave ifenslave: Installed: 2.7ubuntu1 Candidate: 2.7ubuntu1 Version table: *** 2.7ubuntu1 100 100 /var/lib/dpkg/status *username snipped*@*hostname snipped*:~$ apt-cache policy ifupdown ifupdown: Installed: 0.8.10ubuntu1 Candidate: 0.8.10ubuntu1 Version table: *** 0.8.10ubuntu1 100 100 /var/lib/dpkg/status /etc/network/interfaces ---------------------------------- # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto enp2s0f1 iface enp2s0f1 inet manual bond-master bond0 auto enp2s0f0 iface enp2s0f0 inet manual bond-master bond0 auto bond0 iface bond0 inet static address 10.96.96.2 netmask 255.255.255.0 network 10.96.96.0 broadcast 10.96.96.255 # dns-* options are implemented by the resolvconf package, if installed dns-search *snip* bond-mode balance-alb bond-slaves none bond-miimon 100 auto bond0.3000 iface bond0.3000 inet static address 172.21.33.29 netmask 255.255.255.0 network 172.21.33.0 broadcast 172.21.33.255 gateway 172.21.33.1 dns-search *snip* vlan-raw-device bond0 dns-nameservers 172.31.10.84 8.8.8.8 4.2.2.2 ----------------------------------------------------- interfaces.d is empty: *username snipped*@*hostname snipped*:~$ ls -lisah /etc/network/interfaces.d total 8.0K 10748247 4.0K drwxr-xr-x 2 root root 4.0K Jan 24 14:08 . 10748237 4.0K drwxr-xr-x 7 root root 4.0K Apr 21 17:32 .. [Impact] Systems using vlans, especially those using vlans on top of bond interfaces, in addition to default or other routes on the vlans, may find their vlan routes are not present at boot. The attached debdiff patches fix the vlan package's /etc/network/if-pre-up.d/vlan script. Currently, the script will bring up a vlan's raw device if needed; but the problem is if the vlan's ifup processing happens before the raw device's ifup processing, the raw device may be taken down and back up (especially for bonds), and when the raw device is taken down, the vlan is as well, and thus loses all its routing configuration. Instead of only bringing the raw device up using ip link up, the patch changes the vlan script to do a full ifup on the raw device, so it will remain up after the vlan is configured. [Test Case] Set up a system using two interfaces configured into a bond interface, with a vlan on top of that bond. Add a default route and/or specific routes to the vlan interface. Then edit the system as described in comment 8, and reboot. The vlan's routes will not be present in the system. [Regression Potential] Any modifications to ifupdown or the scripts it uses may cause wider problems with network configuration. Specifically, this could cause problems when using vlan interfaces, as it forces every vlan's raw device interface to be fully ifup'ed before the vlan interface can finish its ifup. [Other Info] original description below: Expectation: After reboot, route for default gateway specified on bonded interface is installed according to "gateway x.x.x.x" (where x.x.x.x is a valid IPv4 address) specified in /etc/network/interfaces or files sourced per /etc/network/interfaces Actual Result: After reboot, route is not installed. Interface does work otherwise (I can ping the gateway on that subnet, for instance). 'ifdown -a' followed by 'ifup -a' (run with proper permission... so sudo) brings the gateway back until next reboot. Package: I'm not familiar enough to be certain what is causing this, but I was seeing this in beta2 of 16.04 as well. *username snipped*@*hostname snipped*:~$ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 *username snipped*@*hostname snipped*:~$ apt-cache policy ifenslave ifenslave:   Installed: 2.7ubuntu1   Candidate: 2.7ubuntu1   Version table:  *** 2.7ubuntu1 100         100 /var/lib/dpkg/status *username snipped*@*hostname snipped*:~$ apt-cache policy ifupdown ifupdown:   Installed: 0.8.10ubuntu1   Candidate: 0.8.10ubuntu1   Version table:  *** 0.8.10ubuntu1 100         100 /var/lib/dpkg/status       /etc/network/interfaces ---------------------------------- # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto enp2s0f1 iface enp2s0f1 inet manual bond-master bond0 auto enp2s0f0 iface enp2s0f0 inet manual bond-master bond0 auto bond0 iface bond0 inet static         address 10.96.96.2         netmask 255.255.255.0         network 10.96.96.0         broadcast 10.96.96.255         # dns-* options are implemented by the resolvconf package, if installed         dns-search *snip*         bond-mode balance-alb         bond-slaves none         bond-miimon 100 auto bond0.3000 iface bond0.3000 inet static         address 172.21.33.29         netmask 255.255.255.0         network 172.21.33.0         broadcast 172.21.33.255         gateway 172.21.33.1         dns-search *snip*         vlan-raw-device bond0         dns-nameservers 172.31.10.84 8.8.8.8 4.2.2.2 ----------------------------------------------------- interfaces.d is empty: *username snipped*@*hostname snipped*:~$ ls -lisah /etc/network/interfaces.d total 8.0K 10748247 4.0K drwxr-xr-x 2 root root 4.0K Jan 24 14:08 . 10748237 4.0K drwxr-xr-x 7 root root 4.0K Apr 21 17:32 ..
2017-03-30 16:27:39 Ubuntu Foundations Team Bug Bot tags bot-comment xenial bot-comment patch xenial
2017-03-30 16:27:50 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Sponsors Team
2017-03-30 16:29:45 Dan Streetman tags bot-comment patch xenial sts-sponsor
2017-03-30 16:34:23 Dan Streetman tags sts-sponsor patch sts-sponsor
2017-03-30 16:36:23 Dan Streetman bug task added vlan (Debian)
2017-03-30 16:37:00 Dan Streetman bug task deleted ifupdown (Ubuntu)
2017-03-30 16:37:58 Dan Streetman vlan (Ubuntu): importance High Medium
2017-03-31 07:02:40 Bug Watch Updater vlan (Debian): status Unknown New
2017-04-04 19:16:42 Sander van Schie bug added subscriber Sander van Schie
2017-04-06 20:49:58 Kevin Tower bug added subscriber Kevin Tower
2017-05-18 17:43:05 Jared Baker bug added subscriber Jared Baker
2017-05-22 16:42:39 Dan Streetman tags patch sts-sponsor patch sts-sru-needed
2017-05-22 20:32:10 Dan Streetman attachment removed lp1573272-zesty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850620/+files/lp1573272-zesty.debdiff
2017-05-22 20:32:20 Dan Streetman attachment removed lp1573272-yakkety.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850619/+files/lp1573272-yakkety.debdiff
2017-05-22 20:32:28 Dan Streetman attachment removed lp1573272-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4850618/+files/lp1573272-xenial.debdiff
2017-05-22 20:33:19 Dan Streetman attachment added lp1573272-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4881557/+files/lp1573272-xenial.debdiff
2017-05-22 20:33:35 Dan Streetman attachment added lp1573272-yakkety.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4881558/+files/lp1573272-yakkety.debdiff
2017-05-22 20:33:47 Dan Streetman attachment added lp1573272-zesty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4881559/+files/lp1573272-zesty.debdiff
2017-05-22 20:33:59 Dan Streetman attachment added lp1573272-artful.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4881560/+files/lp1573272-artful.debdiff
2017-05-22 20:38:23 Dan Streetman bug added subscriber Robie Basak
2017-05-24 15:53:25 Eric Desrochers bug task added vlan (Ubuntu Zesty)
2017-05-24 15:53:32 Eric Desrochers bug task added vlan (Ubuntu Yakkety)
2017-05-24 15:53:38 Eric Desrochers bug task added vlan (Ubuntu Xenial)
2017-05-24 15:53:46 Eric Desrochers bug task added vlan (Ubuntu Trusty)
2017-05-24 15:53:53 Eric Desrochers bug task added vlan (Ubuntu Artful)
2017-05-25 14:34:42 Launchpad Janitor vlan (Ubuntu Artful): status In Progress Fix Released
2017-05-26 14:14:38 Eric Desrochers tags patch sts-sru-needed sts-sru-done
2017-05-26 14:14:44 Eric Desrochers removed subscriber Ubuntu Sponsors Team
2017-05-26 14:15:07 Eric Desrochers vlan (Ubuntu Zesty): assignee Dan Streetman (ddstreet)
2017-05-26 14:15:17 Eric Desrochers vlan (Ubuntu Yakkety): assignee Dan Streetman (ddstreet)
2017-05-26 14:15:31 Eric Desrochers vlan (Ubuntu Xenial): assignee Dan Streetman (ddstreet)
2017-05-26 14:15:43 Eric Desrochers vlan (Ubuntu Trusty): assignee Dan Streetman (ddstreet)
2017-05-26 14:15:48 Eric Desrochers vlan (Ubuntu Trusty): status New In Progress
2017-05-26 14:15:51 Eric Desrochers vlan (Ubuntu Xenial): status New In Progress
2017-05-26 14:15:54 Eric Desrochers vlan (Ubuntu Yakkety): status New In Progress
2017-05-26 14:15:56 Eric Desrochers vlan (Ubuntu Zesty): status New In Progress
2017-05-26 14:16:46 Eric Desrochers bug added subscriber SRU Verification
2017-05-26 14:17:08 Eric Desrochers vlan (Ubuntu Trusty): importance Undecided Medium
2017-05-26 14:17:10 Eric Desrochers vlan (Ubuntu Xenial): importance Undecided Medium
2017-05-26 14:17:14 Eric Desrochers vlan (Ubuntu Zesty): importance Undecided Medium
2017-05-26 14:17:17 Eric Desrochers vlan (Ubuntu Yakkety): importance Undecided Medium
2017-05-26 14:18:55 Eric Desrochers bug added subscriber Eric Desrochers
2017-05-29 10:42:29 Łukasz Zemczak vlan (Ubuntu Zesty): status In Progress Fix Committed
2017-05-29 10:42:32 Łukasz Zemczak bug added subscriber Ubuntu Stable Release Updates Team
2017-05-29 10:42:43 Łukasz Zemczak tags sts-sru-done sts-sru-done verification-needed
2017-05-29 10:43:29 Łukasz Zemczak vlan (Ubuntu Yakkety): status In Progress Fix Committed
2017-05-29 10:44:21 Łukasz Zemczak vlan (Ubuntu Xenial): status In Progress Fix Committed
2017-05-29 10:45:38 Łukasz Zemczak vlan (Ubuntu Trusty): status In Progress Fix Committed
2017-05-29 22:36:48 Dan Streetman attachment added lp1573272v2-trusty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4885911/+files/lp1573272v2-trusty.debdiff
2017-05-29 22:37:06 Dan Streetman attachment added lp1573272v2-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4885912/+files/lp1573272v2-xenial.debdiff
2017-05-29 22:37:23 Dan Streetman attachment added lp1573272v2-yakkety.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4885913/+files/lp1573272v2-yakkety.debdiff
2017-05-29 22:37:39 Dan Streetman attachment added lp1573272v2-zesty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4885914/+files/lp1573272v2-zesty.debdiff
2017-05-29 22:37:56 Dan Streetman attachment added lp1573272v2-artful.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4885915/+files/lp1573272v2-artful.debdiff
2017-05-29 22:51:48 Mathieu Trudel-Lapierre vlan (Ubuntu Artful): status Fix Released New
2017-05-29 23:16:41 Eric Desrochers tags sts-sru-done verification-needed sts-sru-needed verification-needed
2017-05-30 01:57:20 Launchpad Janitor vlan (Ubuntu Artful): status New Fix Released
2017-05-30 12:58:05 Stefan Bader bug added subscriber Stefan Bader
2017-05-30 20:20:45 Eric Desrochers vlan (Ubuntu Zesty): status Fix Committed In Progress
2017-05-30 20:20:47 Eric Desrochers vlan (Ubuntu Yakkety): status Fix Committed In Progress
2017-05-30 20:20:49 Eric Desrochers vlan (Ubuntu Trusty): status Fix Committed In Progress
2017-05-30 20:20:53 Eric Desrochers vlan (Ubuntu Xenial): status Fix Committed In Progress
2017-05-30 20:22:39 Eric Desrochers tags sts-sru-needed verification-needed sts-sru-done verification-needed
2017-05-30 20:35:21 Eric Desrochers tags sts-sru-done verification-needed sts-sru-done
2017-06-01 10:43:33 Łukasz Zemczak vlan (Ubuntu Zesty): status In Progress Fix Committed
2017-06-01 10:43:46 Łukasz Zemczak tags sts-sru-done sts-sru-done verification-needed
2017-06-01 10:44:49 Łukasz Zemczak vlan (Ubuntu Yakkety): status In Progress Fix Committed
2017-06-01 10:46:03 Łukasz Zemczak vlan (Ubuntu Xenial): status In Progress Fix Committed
2017-06-01 10:47:55 Łukasz Zemczak vlan (Ubuntu Trusty): status In Progress Fix Committed
2017-06-02 14:44:34 Dan Streetman tags sts-sru-done verification-needed sts-sru-done verification-done-artful verification-needed
2017-06-02 14:51:00 Dan Streetman tags sts-sru-done verification-done-artful verification-needed sts-sru-done verification-done-artful verification-done-zesty verification-needed
2017-06-02 14:55:21 Dan Streetman tags sts-sru-done verification-done-artful verification-done-zesty verification-needed sts-sru-done verification-done-artful verification-done-yakkety verification-done-zesty verification-needed
2017-06-02 16:32:15 Dan Streetman tags sts-sru-done verification-done-artful verification-done-yakkety verification-done-zesty verification-needed sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed
2017-06-05 16:35:16 Dan Streetman attachment added lp1573272v3-trusty.debdiff https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1573272/+attachment/4889447/+files/lp1573272v3-trusty.debdiff
2017-06-05 16:42:55 Dan Streetman tags sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed-trusty
2017-06-05 16:46:57 Eric Desrochers vlan (Ubuntu Trusty): status Fix Committed In Progress
2017-06-05 16:53:20 Dan Streetman tags sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed-trusty sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty
2017-06-05 16:56:22 Eric Desrochers tags sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty sts-sru-done verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty
2017-06-06 20:49:20 Dan Streetman tags sts-sru-done verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty
2017-06-08 16:15:41 Brian Murray vlan (Ubuntu Trusty): status In Progress Fix Committed
2017-06-08 16:16:01 Brian Murray tags sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty verification-needed
2017-06-09 12:59:22 Dan Streetman tags sts-sru-done verification-done-artful verification-done-xenial verification-done-yakkety verification-done-zesty verification-failed-trusty verification-needed sts-sru-done verification-done-artful verification-done-trusty verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed
2017-06-09 12:59:36 Dan Streetman tags sts-sru-done verification-done-artful verification-done-trusty verification-done-xenial verification-done-yakkety verification-done-zesty verification-needed sts-sru-done verification-done verification-done-artful verification-done-trusty verification-done-xenial verification-done-yakkety verification-done-zesty
2017-06-13 14:57:03 Launchpad Janitor vlan (Ubuntu Zesty): status Fix Committed Fix Released
2017-06-13 14:57:09 Łukasz Zemczak removed subscriber Ubuntu Stable Release Updates Team
2017-06-13 14:57:22 Launchpad Janitor vlan (Ubuntu Yakkety): status Fix Committed Fix Released
2017-06-13 14:57:33 Launchpad Janitor vlan (Ubuntu Xenial): status Fix Committed Fix Released
2017-06-15 21:16:04 Launchpad Janitor vlan (Ubuntu Trusty): status Fix Committed Fix Released
2019-05-25 14:31:17 Dan Streetman removed subscriber Dan Streetman
2021-06-17 16:40:57 Christian Rohmann bug added subscriber Christian Rohmann