apport information ** Tags added: apport-collected
** Description changed: Description: Ubuntu 12.04.2 LTS Release: 12.04 When trying to configure server vlan support for multiple vlans is lost. I have 2 nics on a server (Ubuntu 12.04 Server) eth0 - has 2 vlans trunked to it (lets say vlan 15 and 16) eth1 - no vlans truncked, standard active port Here are the steps I followed: Code: sudo apt-get install vlan sudo modprobe 8021q sudo vconfig add eth0.15 sudo vconfig add eth0.16 sudo ip addr add 192.168.1.100 dev eth0.16 sudo ip addr add 192.168.5.100 dev eth0.15 I then appended '8021q' to the /etc/modules file and modified the interfaces file. Here is my interfaces file: Code: # The loopback network interface auto lo iface lo inet loopback auto eth0.16 iface eth0.16 inet static address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1 dns-search domain.com dns-nameservers 192.168.1.2 # vlan-raw-device eth0 auto eth0.15 iface eth0.15 inet static address 192.168.5.100 netmask 255.255.255.0 # vlan-raw-device eth0 auto eth1 iface eth1 inet static address 192.168.10.100 netmask 255.255.255.0 On boot all interfaces come up, however I can only contact resources on 192.168.10.100 and 192.168.5.100 network. When I run tcpdump on eth0 I can see arps from the missing network segment on vlan 16. After some searching I found a similar issue in RHEL with intel based cards, the fix was to perfrom the following ethtool command. Code: sudo ethtool -K eth0 rxvlan off sudo ethtool -K eth0 txvlan off txvlan off works fine, rxvlan off returns: "Cannot set device flag settings: Operation not supported" When I perform an ifconfig eth0.16, there are no RX packets... + --- + AlsaDevices: + total 0 + crw-rw---T 1 root audio 116, 1 Feb 20 22:32 seq + crw-rw---T 1 root audio 116, 33 Feb 20 22:32 timer + AplayDevices: Error: [Errno 2] No such file or directory + ApportVersion: 2.0.1-0ubuntu17.1 + Architecture: amd64 + ArecordDevices: Error: [Errno 2] No such file or directory + AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', '/dev/snd/timer'] failed with exit code 1: + CRDA: Error: [Errno 2] No such file or directory + CurrentDmesg: [ 20.920297] eth1: no IPv6 routers present + DistroRelease: Ubuntu 12.04 + HibernationDevice: RESUME=UUID=4022f507-3c6e-44a9-8e3c-7e79067402d1 + InstallationMedia: Ubuntu-Server 12.04 LTS "Precise Pangolin" - Release amd64 (20120424.1) + IwConfig: + lo no wireless extensions. + + eth1 no wireless extensions. + + eth0 no wireless extensions. + MachineType: HP ProLiant BL460c G6 + MarkForUpload: True + Package: linux (not installed) + PciMultimedia: + + ProcEnviron: + TERM=xterm + PATH=(custom, no user) + LANG=en_US.UTF-8 + SHELL=/bin/bash + ProcFB: 0 radeondrmfb + ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-38-generic root=/dev/mapper/hostname-root ro + ProcVersionSignature: Ubuntu 3.2.0-38.60-generic 3.2.37 + RelatedPackageVersions: + linux-restricted-modules-3.2.0-38-generic N/A + linux-backports-modules-3.2.0-38-generic N/A + linux-firmware 1.79.1 + RfKill: Error: [Errno 2] No such file or directory + Tags: precise + Uname: Linux 3.2.0-38-generic x86_64 + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo + dmi.bios.date: 08/16/2010 + dmi.bios.vendor: HP + dmi.bios.version: I24 + dmi.chassis.type: 23 + dmi.chassis.vendor: HP + dmi.modalias: dmi:bvnHP:bvrI24:bd08/16/2010:svnHP:pnProLiantBL460cG6:pvr:cvnHP:ct23:cvr: + dmi.product.name: ProLiant BL460c G6 + dmi.sys.vendor: HP ** Attachment added: "AcpiTables.txt" https://bugs.launchpad.net/bugs/1131226/+attachment/3540294/+files/AcpiTables.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1131226 Title: 801q support Broadcom NetXtreme II 57XX To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1131226/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
