Your message dated Sat, 23 Mar 2013 19:32:34 +0000
with message-id <[email protected]>
and subject line Bug#696642: fixed in ifupdown 0.7.5+nmu2
has caused the Debian Bug report #696642,
regarding ifupdown: fails to bring up eth0.xx alias in bridge/vlan setup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
696642: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696642
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ifupdown
Version: 0.7.5
Severity: normal

Dear Maintainer,

I am using Debian as the host OS in a KVM virtualization environment. In 
testing Wheezy, I've discovered the following issue where an ethernet 
alias is not brought up, and then a bridge alias is created rather than 
a new bridge.  Also, the bridge alias is set up for a vlan rather than 
just the intended ethernet alias.

To illustrate, I have set up squeeze and wheezy the same way and included
output. Both machines installed with base+ssh server in tasksel with
thees packages installed afterward:

vlan bridge-utils qemu-kvm qemu-utils libvirt-bin 

----
## interfaces file. except for IP, exact same on both machines.
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet manual

auto eth0.4094
iface eth0.4094 inet manual
        vlan_raw_device eth0

auto br0
iface br0 inet static
        address 10.205.16.8   # 8 == wheezy, 9 == squeeze
        netmask 255.255.248.0
        gateway 10.205.16.1
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0
        bridge_maxwait 0

auto br0.4094
iface br0.4094 inet manual
        bridge_ports eth0.4094
        bridge_stp off
        bridge_fd 0
        bridge_maxwait 0

----
Squeeze: expected outcome; vms added to br0 and br0.4094 work as expected.

root@squeeze:~# ifconfig 
br0       Link encap:Ethernet  HWaddr 00:1a:4b:33:f8:b0  
          inet addr:10.205.16.9  Bcast:10.205.23.255  Mask:255.255.248.0
          inet6 addr: fe80::21a:4bff:fe33:f8b0/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:194 errors:0 dropped:0 overruns:0 frame:0
          TX packets:81 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:16684 (16.2 KiB)  TX bytes:9842 (9.6 KiB)

br0.4094  Link encap:Ethernet  HWaddr 00:1a:4b:33:f8:b0  
          inet6 addr: fe80::21a:4bff:fe33:f8b0/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:29 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:1450 (1.4 KiB)  TX bytes:468 (468.0 B)

eth0      Link encap:Ethernet  HWaddr 00:1a:4b:33:f8:b0  
          inet6 addr: fe80::21a:4bff:fe33:f8b0/64 Scope:Link
          UP BROADCAST RUNNING PROMISC MULTICAST  MTU:1500  Metric:1
          RX packets:1524 errors:0 dropped:0 overruns:0 frame:0
          TX packets:93 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:203495 (198.7 KiB)  TX bytes:11402 (11.1 KiB)
          Interrupt:16 Memory:f6000000-f6012800 

eth0.4094 Link encap:Ethernet  HWaddr 00:1a:4b:33:f8:b0  
          inet6 addr: fe80::21a:4bff:fe33:f8b0/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:29 errors:0 dropped:0 overruns:0 frame:0
          TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:1450 (1.4 KiB)  TX bytes:936 (936.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:14 errors:0 dropped:0 overruns:0 frame:0
          TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:1078 (1.0 KiB)  TX bytes:1078 (1.0 KiB)

root@squeeze:~# brctl show
bridge name     bridge id               STP enabled     interfaces
br0             8000.001a4b33f8b0       no              eth0
br0.4094                8000.001a4b33f8b0       no              eth0.4094
root@squeeze:~# cat /proc/net/vlan/config 
VLAN Dev name    | VLAN ID
Name-Type: VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
eth0.4094      | 4094  | eth0
root@squeeze:~# 

----
Wheezy: unexpected outcome; eth0.4094 isn't up, and also br0.4094
is not actually a bridge (see brctl output) 

root@wheezy:~# ifconfig 
br0       Link encap:Ethernet  HWaddr 00:1c:c4:5d:53:d6  
          inet addr:10.205.16.8  Bcast:10.205.23.255  Mask:255.255.248.0
          inet6 addr: fe80::21c:c4ff:fe5d:53d6/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:375 errors:0 dropped:0 overruns:0 frame:0
          TX packets:80 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:25089 (24.5 KiB)  TX bytes:8678 (8.4 KiB)

br0.4094  Link encap:Ethernet  HWaddr 00:1c:c4:5d:53:d6  
          inet6 addr: fe80::21c:c4ff:fe5d:53d6/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 B)  TX bytes:578 (578.0 B)

eth0      Link encap:Ethernet  HWaddr 00:1c:c4:5d:53:d6  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:954 errors:0 dropped:0 overruns:0 frame:0
          TX packets:70 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:119226 (116.4 KiB)  TX bytes:8102 (7.9 KiB)
          Interrupt:16 Memory:f6000000-f6012800 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:6 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:518 (518.0 B)  TX bytes:518 (518.0 B)

root@wheezy:~# brctl show
bridge name     bridge id               STP enabled     interfaces
br0             8000.001cc45d53d6       no              eth0
root@wheezy:~# cat /proc/net/vlan/config 
VLAN Dev name    | VLAN ID
Name-Type: VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
eth0.4094      | 4094  | eth0
br0.4094       | 4094  | br0
root@wheezy:~# 

Thanks,
Michael


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ifupdown depends on:
ii  dpkg         1.16.9
ii  initscripts  2.88dsf-34
ii  iproute      20120521-3
ii  libc6        2.13-37
ii  lsb-base     4.1+Debian8

ifupdown recommends no packages.

Versions of packages ifupdown suggests:
ii  isc-dhcp-client [dhcp-client]  4.2.2.dfsg.1-5+deb70u2
ii  net-tools                      1.60-24.2
pn  ppp                            <none>
pn  rdnssd                         <none>

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: ifupdown
Source-Version: 0.7.5+nmu2

We believe that the bug you reported is fixed in the latest version of
ifupdown, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Gilbert <[email protected]> (supplier of updated ifupdown package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sat, 23 Mar 2013 19:18:22 +0000
Source: ifupdown
Binary: ifupdown
Architecture: source amd64
Version: 0.7.5+nmu2
Distribution: unstable
Urgency: medium
Maintainer: Andrew O. Shadura <[email protected]>
Changed-By: Michael Gilbert <[email protected]>
Description: 
 ifupdown   - high level tools to configure network interfaces
Closes: 696642
Changes: 
 ifupdown (0.7.5+nmu2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Backport bridge interface fix from experimental (closes: #696642).
Checksums-Sha1: 
 9d2e5597ad34c17e52f758973703ad6d3d3c5e63 2302 ifupdown_0.7.5+nmu2.dsc
 d5dccdfb7727d65c4672ef64927fce26fb490a28 104589 ifupdown_0.7.5+nmu2.tar.gz
 8f53735ebae1bea8f95bdec2d37a39e6784742f2 64902 ifupdown_0.7.5+nmu2_amd64.deb
Checksums-Sha256: 
 163b113481f031c39afad93419a1f1c951d7f491bbea020cf656d318ede8fb21 2302 
ifupdown_0.7.5+nmu2.dsc
 3be06b83c55575efc8546ec95764cd6aca0d4ec05589c310388a0486d5e7252e 104589 
ifupdown_0.7.5+nmu2.tar.gz
 b757f90f00f3dab5f1b326521454cd116dba6d600ffb8cb1ec0489089d826fbd 64902 
ifupdown_0.7.5+nmu2_amd64.deb
Files: 
 c73395f4538686c9c8e71b844a34faa3 2302 admin important ifupdown_0.7.5+nmu2.dsc
 4a9733af668d6edd93cb849ef1a6ccc7 104589 admin important 
ifupdown_0.7.5+nmu2.tar.gz
 6042ec344912326ada7fb0d177f3064a 64902 admin important 
ifupdown_0.7.5+nmu2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQQcBAEBCAAGBQJRTgEkAAoJELjWss0C1vRzoZcf/3JnJdkebFISD/O7v32KHLOp
Asi9Lk9oVsPSP0IZ77jHt2uecCls1d6FSfLwV4q6LcdYRk2pHfQBgCVX7MSK5tpp
mw3sRQ03msplRFKGdb8qKR1vK9ge2VwGFQTaABI4ALzca9GQ9xIeolEyfq2IbfSn
dLVRj+lvu7/UHSOWIbewCDhgkOVDkIyo07KdqHDohIjKrQ/d7XVmlYOAnROwl+nT
85JItSn9yozTc6bEyLNvbFZrPwJHVUZ8ZODFzQood48Ih9OUZfq6M9qcorj2KLbv
2fYwHfk+jaswIlWqB/jm2m8EiEomqP6bZTRDuTaSvDqu9fNm4UXztoe5ZJIvjLSU
ZRH9AnMrmyQZ6xfJT3Ff6q9dQheVDygIZ8gv0RIOnQuKCLlSgHQomz2Vv3a8n3S3
TOXSy7Sh7sPi7D8wc1h+22rWTtZGpBuWddE9bBcoMB3yVHh4g4/sL1Y1z6or86Ba
cwGVp9su+o5EKzyXiWxk5jDsgSMop4TZJI2fdqA/GQFuk/e5ZfN4Bt3JtAJn/k4n
dLuc2SPXHrGGpRPG5YyAFq8YMLAKrdaqQRaBXCozI09DuGjE48cU3/H5ddkQu3+3
bpLlTXtNxVpS3NrirVyxi7tCQPA3nv92a6/OtAyalmEZGkQlnB+oosmxwow9BftH
ZtJ6qptzPecAVkYLsq0OsExlhCkOd8lOKl5uIIbaHTQEcWqp8T87cd26RFUTmu26
D2J6dOl+8MZhw5P4NlLi75c5fRqLOnfdlBlIZeTAd1ShcX4zWsl0j7HLP5fReQ5S
jor5wW3aeht8BJ9VdtehYB9Z4GeMkQWxN8zOSIHFQvp2HcmZfi3HUtFG3Pvk+Te8
JlbDH7GsKZG3TTXZmpcBRUfWpu3DUe6rswN4yNCzSDyw1ntQ/O1rSAXF8O3a0jS5
yPDRwFIb5A8CH4A6J0Aw5Zvm3AS3GOunYsqJVpe3PrI8qdCRKQhFIAlhwYYSBdTZ
UAxIkH7PLqaihZAR1S5ffjRbbiqc9auj58fTBSZxsHXjcArcKN2Q89UnVvyteN+q
7ZQpuQLLV0f9pRUAXOU/gyiqIpCKSwBl0EVWJHjsLJFD4qIA3G+8ZLk0pVbvX3w9
YzzBZRPefy75bJXYpoclRzCSum8nrTmmYV1KiU4Pe6PqQ3l4HkFaH/WijglDB/dE
l6hwFZpX32R1m3KraNxcGOB33xjD3uIHlAJ0rQOKY+whhDYrPR7X0QzPi8xdPg8f
gt4YFNiNvIUNlIV0LVOPpNjmjb1SdY0/LxKvBn64fjxCHOs3/rH01SC/zmz7Np9U
2aYm5+ZdT1GBruvzDyoeADesNGaerw1fgB0mJR7s4Cz55gLWbUUUqkf27Z8kZMk=
=yZx1
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to