Hi, I am trying out a couple of methods to get VLANs to the VM. In both cases the VM can ping google et all without problem and DNS works fine but it does not want to do any TCP. I thought this might be a frame size problem but even using telnet (which I understand sends tiny packets) fails to work. Why would udp / ping work fine when tcp fails? I saw some kind of weird packet on the network when I was trying to connect to a web server running on the VM with telnet. 15:11:47.464656 01:00:00:0e:00:24 (oui Unknown) > 00:00:01:00:00:00 (oui Unknown), ethertype Unknown (0xdcd9), length 66: 0x0000: 84a8 0800 4510 0030 cd23 4000 4006 527b ....E..0.#@.@.R{ 0x0010: 257b 6811 257b 6812 f487 0050 da75 1e54 %{h.%{h....P.u.T 0x0020: 0000 0000 7002 ffff 7b65 0000 0204 05b4 ....p...{e...... 0x0030: 0402 0000 But its hard to repeat them. Any ideas? Thanks, Andrew a) vm001 is on node002 and has the following xml: [root@node002 ~]# virsh dumpxml vm001 ... <interface type='bridge'> <mac address='00:00:00:00:00:0e'/> <source bridge='br0'/> <target dev='vnet0'/> <alias name='net0'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> </interface> <interface type='bridge'> <mac address='00:00:01:00:00:0e'/> <source bridge='br1'/> <target dev='vnet1'/> <model type='e1000'/> <alias name='net1'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> </interface> … [root@vm001 ~]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 00:00:00:00:00:0e brd ff:ff:ff:ff:ff:ff inet 10.141.100.1/16 brd 10.141.255.255 scope global eth0 inet6 fe80::200:ff:fe00:e/64 scope link valid_lft forever preferred_lft forever 3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 00:00:01:00:00:0e brd ff:ff:ff:ff:ff:ff 4: eth1.4@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP link/ether 00:00:01:00:00:0e brd ff:ff:ff:ff:ff:ff inet 37.123.104.18/29 brd 37.123.104.23 scope global eth1.4 inet6 fe80::200:1ff:fe00:e/64 scope link valid_lft forever preferred_lft forever [root@node002 ~]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state UNKNOWN qlen 1000 link/ether 00:02:c9:34:67:31 brd ff:ff:ff:ff:ff:ff inet 192.168.0.1/24 scope global eth0 3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000 link/ether 00:9c:02:24:1a:e0 brd ff:ff:ff:ff:ff:ff inet6 fe80::29c:2ff:fe24:1ae0/64 scope link valid_lft forever preferred_lft forever 4: eth2: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1522 qdisc mq state UP qlen 1000 link/ether 00:9c:02:24:1a:e4 brd ff:ff:ff:ff:ff:ff inet6 fe80::29c:2ff:fe24:1ae4/64 scope link valid_lft forever preferred_lft forever 5: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN link/ether 00:9c:02:24:1a:e0 brd ff:ff:ff:ff:ff:ff inet 10.141.0.2/16 brd 10.141.255.255 scope global br0 inet6 fe80::29c:2ff:fe24:1ae0/64 scope link valid_lft forever preferred_lft forever 7: br1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1522 qdisc noqueue state UNKNOWN link/ether 00:9c:02:24:1a:e4 brd ff:ff:ff:ff:ff:ff inet6 fe80::29c:2ff:fe24:1ae4/64 scope link valid_lft forever preferred_lft forever 8: virbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN link/ether 52:54:00:81:84:9f brd ff:ff:ff:ff:ff:ff inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0 9: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN qlen 500 link/ether 52:54:00:81:84:9f brd ff:ff:ff:ff:ff:ff 33: vnet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500 link/ether fe:00:00:00:00:0e brd ff:ff:ff:ff:ff:ff inet6 fe80::fc00:ff:fe00:e/64 scope link valid_lft forever preferred_lft forever 34: vnet1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1522 qdisc pfifo_fast state UNKNOWN qlen 500 link/ether fe:00:01:00:00:0e brd ff:ff:ff:ff:ff:ff inet6 fe80::fc00:1ff:fe00:e/64 scope link valid_lft forever preferred_lft forever -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html