Hi list,

This is my first post, please be gentle.
I've come in contact with openvswitch, because it is used in our hypervisor (Citrix XenServer 6.1).
I'm still reading the documentation, so I'm not totally into it yet.

The problem I'm having, is that I have a physical switch (HP FlexFabric in a HP C7000 chassis) that sends LLC packets to every vlan (4096) every 5 seconds. This means openvswitch sees those packets on all interfaces and processes them.

Here's a tiny snippet of the the LLC flows (ovs-dpctl dump-flows system@xapi1): in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3753,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3880,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3875,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(2),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=4059,pcp=0),encap(), packets:0, bytes:0, used:never, actions:0 in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3830,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3890,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(1),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3998,pcp=0),encap(), packets:0, bytes:0, used:never, actions:drop in_port(2),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3883,pcp=0),encap(), packets:0, bytes:0, used:never, actions:0 in_port(2),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3914,pcp=0),encap(), packets:0, bytes:0, used:never, actions:0 in_port(2),eth(src=44:1e:a1:78:50:c1,dst=01:14:c2:44:1e:cc),eth_type(0x8100),vlan(vid=3907,pcp=0),encap(), packets:0, bytes:0, used:never, actions:0

The flow count is jumping between 800 and almost 10000 every 5 seconds.

When pinging the ONLY VM (which is idle) on this xenserver host from hypervisor to VM, I observe the following: [root@xenserver ~]# while true ; do echo -e "$(date) ping: $(ping -c 1 1.1.1.1 | grep '64 bytes')\t$(ovs-dpctl show xapi1| grep flows)" ; sleep 0.2 ; done Thu Sep 26 12:01:39 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=296 ms flows: 9390 <<<<< Thu Sep 26 12:01:39 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.58 ms flows: 1115 Thu Sep 26 12:01:39 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.96 ms flows: 1231 Thu Sep 26 12:01:40 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.69 ms flows: 1365 Thu Sep 26 12:01:40 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.55 ms flows: 1469 Thu Sep 26 12:01:40 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.14 ms flows: 1516 Thu Sep 26 12:01:40 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.83 ms flows: 1572 Thu Sep 26 12:01:41 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.08 ms flows: 1674 Thu Sep 26 12:01:41 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=6.05 ms flows: 1716 Thu Sep 26 12:01:41 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.00 ms flows: 1774 Thu Sep 26 12:01:41 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.77 ms flows: 842 Thu Sep 26 12:01:41 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.23 ms flows: 886 Thu Sep 26 12:01:42 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.77 ms flows: 934 Thu Sep 26 12:01:42 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.69 ms flows: 982 Thu Sep 26 12:01:42 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.57 ms flows: 1026 Thu Sep 26 12:01:42 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.32 ms flows: 900 Thu Sep 26 12:01:43 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.30 ms flows: 1024 Thu Sep 26 12:01:43 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.26 ms flows: 1099 Thu Sep 26 12:01:43 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.96 ms flows: 1157 Thu Sep 26 12:01:43 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.24 ms flows: 829 Thu Sep 26 12:01:43 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.70 ms flows: 885 Thu Sep 26 12:01:44 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.10 ms flows: 4595 Thu Sep 26 12:01:44 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.38 ms flows: 7443 Thu Sep 26 12:01:44 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.71 ms flows: 9238 Thu Sep 26 12:01:44 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.73 ms flows: 1328 Thu Sep 26 12:01:45 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.89 ms flows: 1611 Thu Sep 26 12:01:45 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.89 ms flows: 1729 Thu Sep 26 12:01:45 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.31 ms flows: 1826 Thu Sep 26 12:01:45 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.95 ms flows: 1895 Thu Sep 26 12:01:45 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.43 ms flows: 1953 Thu Sep 26 12:01:46 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.53 ms flows: 2029 Thu Sep 26 12:01:46 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.47 ms flows: 2083 Thu Sep 26 12:01:46 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.84 ms flows: 938 Thu Sep 26 12:01:46 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.07 ms flows: 990 Thu Sep 26 12:01:47 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.12 ms flows: 1080 Thu Sep 26 12:01:47 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.67 ms flows: 1186 Thu Sep 26 12:01:47 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.12 ms flows: 823 Thu Sep 26 12:01:47 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.39 ms flows: 881 Thu Sep 26 12:01:47 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.11 ms flows: 919 Thu Sep 26 12:01:48 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.33 ms flows: 995 Thu Sep 26 12:01:48 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.89 ms flows: 1181 Thu Sep 26 12:01:48 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.89 ms flows: 825 Thu Sep 26 12:01:48 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.64 ms flows: 875 Thu Sep 26 12:01:49 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.64 ms flows: 1363 Thu Sep 26 12:01:49 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=11.1 ms flows: 5560 <<< Thu Sep 26 12:01:49 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=7.11 ms flows: 8710 <<< Thu Sep 26 12:01:49 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.35 ms flows: 1470 Thu Sep 26 12:01:49 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.51 ms flows: 907 Thu Sep 26 12:01:50 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.14 ms flows: 1067 Thu Sep 26 12:01:50 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.64 ms flows: 1191 Thu Sep 26 12:01:50 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.78 ms flows: 1309 Thu Sep 26 12:01:50 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.33 ms flows: 1367 Thu Sep 26 12:01:50 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.21 ms flows: 1467 Thu Sep 26 12:01:51 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.55 ms flows: 1545 Thu Sep 26 12:01:51 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.70 ms flows: 1613 Thu Sep 26 12:01:51 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.91 ms flows: 1669 Thu Sep 26 12:01:51 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.61 ms flows: 876 Thu Sep 26 12:01:52 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.53 ms flows: 984 Thu Sep 26 12:01:52 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.25 ms flows: 1076 Thu Sep 26 12:01:52 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.68 ms flows: 1446 Thu Sep 26 12:01:52 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.79 ms flows: 892 Thu Sep 26 12:01:52 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.89 ms flows: 1192 Thu Sep 26 12:01:53 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.29 ms flows: 1332 Thu Sep 26 12:01:53 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.09 ms flows: 1526 Thu Sep 26 12:01:53 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.01 ms flows: 1040 Thu Sep 26 12:01:53 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.91 ms flows: 1184 Thu Sep 26 12:01:54 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.84 ms flows: 3282 Thu Sep 26 12:01:54 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=131 ms flows: 4124 <<<<<<< Thu Sep 26 12:01:54 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.04 ms flows: 2190 Thu Sep 26 12:01:54 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.11 ms flows: 2364 Thu Sep 26 12:01:55 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.16 ms flows: 2552 Thu Sep 26 12:01:55 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.28 ms flows: 2649 Thu Sep 26 12:01:55 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.68 ms flows: 2715 Thu Sep 26 12:01:55 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.32 ms flows: 2777 Thu Sep 26 12:01:55 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.02 ms flows: 848 Thu Sep 26 12:01:56 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.70 ms flows: 942 Thu Sep 26 12:01:56 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.64 ms flows: 1018 Thu Sep 26 12:01:56 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.08 ms flows: 1076 Thu Sep 26 12:01:56 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.81 ms flows: 1146 Thu Sep 26 12:01:57 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.42 ms flows: 942 Thu Sep 26 12:01:57 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.56 ms flows: 1034 Thu Sep 26 12:01:57 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.05 ms flows: 1102 Thu Sep 26 12:01:57 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.29 ms flows: 1188 Thu Sep 26 12:01:57 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.78 ms flows: 921 Thu Sep 26 12:01:58 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.88 ms flows: 1060 Thu Sep 26 12:01:58 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.63 ms flows: 1174 Thu Sep 26 12:01:58 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.79 ms flows: 1232 Thu Sep 26 12:01:58 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.42 ms flows: 1328 Thu Sep 26 12:01:59 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=25.9 ms flows: 3022 <<< Thu Sep 26 12:01:59 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=8.05 ms flows: 6619 <<< Thu Sep 26 12:01:59 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.34 ms flows: 9347 Thu Sep 26 12:01:59 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.12 ms flows: 9416 Thu Sep 26 12:01:59 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.25 ms flows: 1276 Thu Sep 26 12:02:00 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.26 ms flows: 1476 Thu Sep 26 12:02:00 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.48 ms flows: 1628 Thu Sep 26 12:02:00 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.39 ms flows: 1705 Thu Sep 26 12:02:00 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.04 ms flows: 986 Thu Sep 26 12:02:01 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.01 ms flows: 1110 Thu Sep 26 12:02:01 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.73 ms flows: 1180 Thu Sep 26 12:02:01 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.74 ms flows: 1250 Thu Sep 26 12:02:01 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=7.10 ms flows: 815 Thu Sep 26 12:02:01 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.47 ms flows: 931 Thu Sep 26 12:02:02 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.46 ms flows: 1009 Thu Sep 26 12:02:02 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.36 ms flows: 1107 Thu Sep 26 12:02:02 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.12 ms flows: 1173 Thu Sep 26 12:02:02 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.54 ms flows: 937 Thu Sep 26 12:02:03 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.24 ms flows: 1039 Thu Sep 26 12:02:03 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.80 ms flows: 1113 Thu Sep 26 12:02:03 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.93 ms flows: 1185 Thu Sep 26 12:02:03 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.40 ms flows: 900 Thu Sep 26 12:02:03 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.98 ms flows: 962 Thu Sep 26 12:02:04 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.57 ms flows: 4819 Thu Sep 26 12:02:04 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=3.26 ms flows: 8567 Thu Sep 26 12:02:04 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.96 ms flows: 9363 Thu Sep 26 12:02:04 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.45 ms flows: 2221 Thu Sep 26 12:02:05 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.28 ms flows: 1042 Thu Sep 26 12:02:05 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.55 ms flows: 1200 Thu Sep 26 12:02:05 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.29 ms flows: 1315 Thu Sep 26 12:02:05 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.01 ms flows: 863 Thu Sep 26 12:02:05 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.20 ms flows: 933 Thu Sep 26 12:02:06 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.78 ms flows: 1021 Thu Sep 26 12:02:06 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.82 ms flows: 1125 Thu Sep 26 12:02:06 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.72 ms flows: 1199 Thu Sep 26 12:02:06 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.56 ms flows: 920 Thu Sep 26 12:02:07 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.04 ms flows: 1040 Thu Sep 26 12:02:07 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.84 ms flows: 1122 Thu Sep 26 12:02:07 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.77 ms flows: 1448 Thu Sep 26 12:02:07 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.27 ms flows: 936 Thu Sep 26 12:02:07 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.43 ms flows: 1104 Thu Sep 26 12:02:08 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.01 ms flows: 1184 Thu Sep 26 12:02:08 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.65 ms flows: 1100 Thu Sep 26 12:02:08 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.22 ms flows: 1182 Thu Sep 26 12:02:08 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.12 ms flows: 1250 Thu Sep 26 12:02:09 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=2.80 ms flows: 2582 Thu Sep 26 12:02:09 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=5.76 ms flows: 6079 Thu Sep 26 12:02:09 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=72.7 ms flows: 2607 Thu Sep 26 12:02:09 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.30 ms flows: 2805 Thu Sep 26 12:02:09 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.96 ms flows: 2973 Thu Sep 26 12:02:10 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=1.72 ms flows: 3139 Thu Sep 26 12:02:10 CEST 2013 ping: 64 bytes from 1.1.1.1: icmp_seq=1 ttl=63 time=0.979 ms flows: 1020

As you can see, there are spikes over 100 ms in this output.

This is definately related to ovs-vswitchd cpu usage (spike every 5 sec):
[root@xenu39xen01 ~]# top -p 7219 -b -d 0.2 -n 100 | grep ovs-vswitchd --line-buffered | while read line ; do echo "$(date) $line" ; done Thu Sep 26 12:11:18 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:12 ovs-vswitchd Thu Sep 26 12:11:19 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:12 ovs-vswitchd Thu Sep 26 12:11:19 CEST 2013 7219 root 10 -10 10204 5776 1128 R 95.2 0.8 5273:12 ovs-vswitchd Thu Sep 26 12:11:19 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:12 ovs-vswitchd Thu Sep 26 12:11:19 CEST 2013 7219 root 10 -10 10204 5776 1128 S 61.9 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:19 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:20 CEST 2013 7219 root 10 -10 10204 5776 1128 R 19.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:20 CEST 2013 7219 root 10 -10 10204 5776 1128 S 38.1 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:20 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:20 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:20 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:21 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:21 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:21 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:21 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:21 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:22 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:22 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:22 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:22 CEST 2013 7219 root 10 -10 10204 5776 1128 S 14.3 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:22 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:23 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:23 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:23 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:23 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:24 CEST 2013 7219 root 10 -10 10204 5776 1128 R 19.1 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:24 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:24 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:24 CEST 2013 7219 root 10 -10 10204 5776 1128 R 33.9 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:24 CEST 2013 7219 root 10 -10 10204 5776 1128 R 34.0 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:25 CEST 2013 7219 root 10 -10 10204 5776 1128 S 14.2 0.8 5273:13 ovs-vswitchd Thu Sep 26 12:11:25 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.6 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:25 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:25 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:25 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:26 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.6 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:26 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:26 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:26 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:26 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.9 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:27 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:27 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:27 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:27 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:28 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:28 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:28 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:28 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:28 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:29 CEST 2013 7219 root 10 -10 10204 5776 1128 R 38.1 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:29 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:29 CEST 2013 7219 root 10 -10 10204 5776 1128 S 76.7 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:29 CEST 2013 7219 root 10 -10 10204 5776 1128 R 19.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:29 CEST 2013 7219 root 10 -10 10204 5776 1128 S 33.3 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:30 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.5 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:30 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:30 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:30 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:30 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:31 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:31 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:31 CEST 2013 7219 root 10 -10 10204 5776 1128 R 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:31 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:32 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.5 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:32 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:32 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:32 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:32 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.7 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:33 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:33 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:33 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:33 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:33 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:34 CEST 2013 7219 root 10 -10 10204 5776 1128 R 47.6 0.8 5273:14 ovs-vswitchd Thu Sep 26 12:11:34 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:34 CEST 2013 7219 root 10 -10 10204 5776 1128 R 100.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:34 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.7 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:34 CEST 2013 7219 root 10 -10 10204 5776 1128 S 49.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:35 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:35 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:35 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:35 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:35 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:36 CEST 2013 7219 root 10 -10 10204 5776 1128 S 5.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:36 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:36 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:36 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:37 CEST 2013 7219 root 10 -10 10204 5776 1128 S 9.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:37 CEST 2013 7219 root 10 -10 10204 5776 1128 R 4.8 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:37 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:37 CEST 2013 7219 root 10 -10 10204 5776 1128 R 9.6 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:37 CEST 2013 7219 root 10 -10 10204 5776 1128 S 4.9 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:38 CEST 2013 7219 root 10 -10 10204 5776 1128 S 13.9 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:38 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:38 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:38 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:38 CEST 2013 7219 root 10 -10 10204 5776 1128 S 0.0 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:39 CEST 2013 7219 root 10 -10 10204 5776 1128 R 56.3 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:39 CEST 2013 7219 root 10 -10 10204 5776 1128 R 99.5 0.8 5273:15 ovs-vswitchd Thu Sep 26 12:11:39 CEST 2013 7219 root 10 -10 10204 5776 1128 R 87.5 0.8 5273:16 ovs-vswitchd

Unfortunately I cannot disable the LLC packets on the switch.

Is there some way to fix this in ovs?

Kind regards,
Tom van Leeuwen

PS: On a busy xenserver running 64 VM's, this problem becomes even more apparent: root@xenserver:~# ping -c 150 -i 0.2 2.2.2.2 | while read line ; do echo "$(date) $line"; done
Thu Sep 26 12:19:25 CEST 2013 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data.
Thu Sep 26 12:19:25 CEST 2013 64 bytes from 2.2.2.2: icmp_req=1 ttl=64 time=1.65 ms Thu Sep 26 12:19:25 CEST 2013 64 bytes from 2.2.2.2: icmp_req=2 ttl=64 time=1.15 ms Thu Sep 26 12:19:26 CEST 2013 64 bytes from 2.2.2.2: icmp_req=3 ttl=64 time=1.00 ms Thu Sep 26 12:19:26 CEST 2013 64 bytes from 2.2.2.2: icmp_req=4 ttl=64 time=1.05 ms Thu Sep 26 12:19:26 CEST 2013 64 bytes from 2.2.2.2: icmp_req=5 ttl=64 time=0.908 ms Thu Sep 26 12:19:26 CEST 2013 64 bytes from 2.2.2.2: icmp_req=6 ttl=64 time=0.861 ms Thu Sep 26 12:19:26 CEST 2013 64 bytes from 2.2.2.2: icmp_req=7 ttl=64 time=1.11 ms Thu Sep 26 12:19:27 CEST 2013 64 bytes from 2.2.2.2: icmp_req=8 ttl=64 time=1.02 ms Thu Sep 26 12:19:27 CEST 2013 64 bytes from 2.2.2.2: icmp_req=9 ttl=64 time=0.857 ms Thu Sep 26 12:19:27 CEST 2013 64 bytes from 2.2.2.2: icmp_req=10 ttl=64 time=0.911 ms Thu Sep 26 12:19:27 CEST 2013 64 bytes from 2.2.2.2: icmp_req=11 ttl=64 time=0.535 ms Thu Sep 26 12:19:27 CEST 2013 64 bytes from 2.2.2.2: icmp_req=12 ttl=64 time=0.527 ms Thu Sep 26 12:19:28 CEST 2013 64 bytes from 2.2.2.2: icmp_req=13 ttl=64 time=1.10 ms Thu Sep 26 12:19:28 CEST 2013 64 bytes from 2.2.2.2: icmp_req=14 ttl=64 time=2.24 ms Thu Sep 26 12:19:28 CEST 2013 64 bytes from 2.2.2.2: icmp_req=15 ttl=64 time=0.841 ms Thu Sep 26 12:19:28 CEST 2013 64 bytes from 2.2.2.2: icmp_req=16 ttl=64 time=0.894 ms Thu Sep 26 12:19:28 CEST 2013 64 bytes from 2.2.2.2: icmp_req=17 ttl=64 time=0.836 ms Thu Sep 26 12:19:29 CEST 2013 64 bytes from 2.2.2.2: icmp_req=18 ttl=64 time=0.974 ms Thu Sep 26 12:19:29 CEST 2013 64 bytes from 2.2.2.2: icmp_req=19 ttl=64 time=1.60 ms Thu Sep 26 12:19:29 CEST 2013 64 bytes from 2.2.2.2: icmp_req=20 ttl=64 time=1.02 ms Thu Sep 26 12:19:29 CEST 2013 64 bytes from 2.2.2.2: icmp_req=21 ttl=64 time=0.726 ms Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=22 ttl=64 time=449 ms <<<<<< Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=23 ttl=64 time=261 ms <<<<<< Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=24 ttl=64 time=61.3 ms Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=25 ttl=64 time=1.21 ms Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=26 ttl=64 time=0.936 ms Thu Sep 26 12:19:30 CEST 2013 64 bytes from 2.2.2.2: icmp_req=27 ttl=64 time=11.0 ms Thu Sep 26 12:19:31 CEST 2013 64 bytes from 2.2.2.2: icmp_req=28 ttl=64 time=0.831 ms Thu Sep 26 12:19:31 CEST 2013 64 bytes from 2.2.2.2: icmp_req=29 ttl=64 time=1.07 ms Thu Sep 26 12:19:31 CEST 2013 64 bytes from 2.2.2.2: icmp_req=30 ttl=64 time=1.04 ms Thu Sep 26 12:19:31 CEST 2013 64 bytes from 2.2.2.2: icmp_req=31 ttl=64 time=0.927 ms Thu Sep 26 12:19:31 CEST 2013 64 bytes from 2.2.2.2: icmp_req=32 ttl=64 time=0.992 ms Thu Sep 26 12:19:32 CEST 2013 64 bytes from 2.2.2.2: icmp_req=33 ttl=64 time=1.07 ms Thu Sep 26 12:19:32 CEST 2013 64 bytes from 2.2.2.2: icmp_req=34 ttl=64 time=1.00 ms Thu Sep 26 12:19:32 CEST 2013 64 bytes from 2.2.2.2: icmp_req=35 ttl=64 time=0.971 ms Thu Sep 26 12:19:32 CEST 2013 64 bytes from 2.2.2.2: icmp_req=36 ttl=64 time=0.890 ms Thu Sep 26 12:19:32 CEST 2013 64 bytes from 2.2.2.2: icmp_req=37 ttl=64 time=0.818 ms Thu Sep 26 12:19:33 CEST 2013 64 bytes from 2.2.2.2: icmp_req=38 ttl=64 time=0.897 ms Thu Sep 26 12:19:33 CEST 2013 64 bytes from 2.2.2.2: icmp_req=39 ttl=64 time=0.877 ms Thu Sep 26 12:19:33 CEST 2013 64 bytes from 2.2.2.2: icmp_req=40 ttl=64 time=1.01 ms Thu Sep 26 12:19:33 CEST 2013 64 bytes from 2.2.2.2: icmp_req=41 ttl=64 time=0.669 ms Thu Sep 26 12:19:33 CEST 2013 64 bytes from 2.2.2.2: icmp_req=42 ttl=64 time=1.08 ms Thu Sep 26 12:19:34 CEST 2013 64 bytes from 2.2.2.2: icmp_req=43 ttl=64 time=1.37 ms Thu Sep 26 12:19:34 CEST 2013 64 bytes from 2.2.2.2: icmp_req=44 ttl=64 time=0.991 ms Thu Sep 26 12:19:34 CEST 2013 64 bytes from 2.2.2.2: icmp_req=45 ttl=64 time=0.577 ms Thu Sep 26 12:19:34 CEST 2013 64 bytes from 2.2.2.2: icmp_req=46 ttl=64 time=1.04 ms Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=47 ttl=64 time=449 ms <<<<<< Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=48 ttl=64 time=244 ms <<<<<< Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=49 ttl=64 time=35.1 ms Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=50 ttl=64 time=1.00 ms Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=51 ttl=64 time=1.22 ms Thu Sep 26 12:19:35 CEST 2013 64 bytes from 2.2.2.2: icmp_req=52 ttl=64 time=1.00 ms Thu Sep 26 12:19:36 CEST 2013 64 bytes from 2.2.2.2: icmp_req=53 ttl=64 time=0.966 ms Thu Sep 26 12:19:36 CEST 2013 64 bytes from 2.2.2.2: icmp_req=54 ttl=64 time=0.739 ms Thu Sep 26 12:19:36 CEST 2013 64 bytes from 2.2.2.2: icmp_req=55 ttl=64 time=1.24 ms Thu Sep 26 12:19:36 CEST 2013 64 bytes from 2.2.2.2: icmp_req=56 ttl=64 time=0.914 ms Thu Sep 26 12:19:36 CEST 2013 64 bytes from 2.2.2.2: icmp_req=57 ttl=64 time=1.10 ms Thu Sep 26 12:19:37 CEST 2013 64 bytes from 2.2.2.2: icmp_req=58 ttl=64 time=0.823 ms Thu Sep 26 12:19:37 CEST 2013 64 bytes from 2.2.2.2: icmp_req=59 ttl=64 time=0.784 ms Thu Sep 26 12:19:37 CEST 2013 64 bytes from 2.2.2.2: icmp_req=60 ttl=64 time=0.603 ms Thu Sep 26 12:19:37 CEST 2013 64 bytes from 2.2.2.2: icmp_req=61 ttl=64 time=0.728 ms Thu Sep 26 12:19:37 CEST 2013 64 bytes from 2.2.2.2: icmp_req=62 ttl=64 time=0.902 ms Thu Sep 26 12:19:38 CEST 2013 64 bytes from 2.2.2.2: icmp_req=63 ttl=64 time=0.674 ms Thu Sep 26 12:19:38 CEST 2013 64 bytes from 2.2.2.2: icmp_req=64 ttl=64 time=0.921 ms Thu Sep 26 12:19:38 CEST 2013 64 bytes from 2.2.2.2: icmp_req=65 ttl=64 time=0.991 ms Thu Sep 26 12:19:38 CEST 2013 64 bytes from 2.2.2.2: icmp_req=66 ttl=64 time=1.08 ms Thu Sep 26 12:19:38 CEST 2013 64 bytes from 2.2.2.2: icmp_req=67 ttl=64 time=0.505 ms Thu Sep 26 12:19:39 CEST 2013 64 bytes from 2.2.2.2: icmp_req=68 ttl=64 time=0.730 ms Thu Sep 26 12:19:39 CEST 2013 64 bytes from 2.2.2.2: icmp_req=69 ttl=64 time=0.993 ms Thu Sep 26 12:19:39 CEST 2013 64 bytes from 2.2.2.2: icmp_req=70 ttl=64 time=0.941 ms Thu Sep 26 12:19:39 CEST 2013 64 bytes from 2.2.2.2: icmp_req=71 ttl=64 time=0.731 ms Thu Sep 26 12:19:39 CEST 2013 64 bytes from 2.2.2.2: icmp_req=72 ttl=64 time=3.57 ms Thu Sep 26 12:19:40 CEST 2013 64 bytes from 2.2.2.2: icmp_req=73 ttl=64 time=30.5 ms <<<<<< Thu Sep 26 12:19:40 CEST 2013 64 bytes from 2.2.2.2: icmp_req=74 ttl=64 time=0.997 ms Thu Sep 26 12:19:40 CEST 2013 64 bytes from 2.2.2.2: icmp_req=75 ttl=64 time=0.899 ms Thu Sep 26 12:19:40 CEST 2013 64 bytes from 2.2.2.2: icmp_req=76 ttl=64 time=0.554 ms Thu Sep 26 12:19:40 CEST 2013 64 bytes from 2.2.2.2: icmp_req=77 ttl=64 time=0.813 ms Thu Sep 26 12:19:41 CEST 2013 64 bytes from 2.2.2.2: icmp_req=78 ttl=64 time=0.797 ms Thu Sep 26 12:19:41 CEST 2013 64 bytes from 2.2.2.2: icmp_req=79 ttl=64 time=0.760 ms Thu Sep 26 12:19:41 CEST 2013 64 bytes from 2.2.2.2: icmp_req=80 ttl=64 time=1.08 ms Thu Sep 26 12:19:41 CEST 2013 64 bytes from 2.2.2.2: icmp_req=81 ttl=64 time=1.13 ms Thu Sep 26 12:19:41 CEST 2013 64 bytes from 2.2.2.2: icmp_req=82 ttl=64 time=1.02 ms Thu Sep 26 12:19:42 CEST 2013 64 bytes from 2.2.2.2: icmp_req=83 ttl=64 time=0.803 ms Thu Sep 26 12:19:42 CEST 2013 64 bytes from 2.2.2.2: icmp_req=84 ttl=64 time=0.877 ms Thu Sep 26 12:19:42 CEST 2013 64 bytes from 2.2.2.2: icmp_req=85 ttl=64 time=1.17 ms Thu Sep 26 12:19:42 CEST 2013 64 bytes from 2.2.2.2: icmp_req=86 ttl=64 time=1.00 ms Thu Sep 26 12:19:42 CEST 2013 64 bytes from 2.2.2.2: icmp_req=87 ttl=64 time=0.572 ms Thu Sep 26 12:19:43 CEST 2013 64 bytes from 2.2.2.2: icmp_req=88 ttl=64 time=0.869 ms Thu Sep 26 12:19:43 CEST 2013 64 bytes from 2.2.2.2: icmp_req=89 ttl=64 time=6.87 ms Thu Sep 26 12:19:43 CEST 2013 64 bytes from 2.2.2.2: icmp_req=90 ttl=64 time=0.549 ms Thu Sep 26 12:19:43 CEST 2013 64 bytes from 2.2.2.2: icmp_req=91 ttl=64 time=1.81 ms Thu Sep 26 12:19:43 CEST 2013 64 bytes from 2.2.2.2: icmp_req=92 ttl=64 time=1.14 ms Thu Sep 26 12:19:44 CEST 2013 64 bytes from 2.2.2.2: icmp_req=93 ttl=64 time=3.29 ms Thu Sep 26 12:19:44 CEST 2013 64 bytes from 2.2.2.2: icmp_req=94 ttl=64 time=1.66 ms Thu Sep 26 12:19:44 CEST 2013 64 bytes from 2.2.2.2: icmp_req=95 ttl=64 time=0.935 ms Thu Sep 26 12:19:44 CEST 2013 64 bytes from 2.2.2.2: icmp_req=96 ttl=64 time=0.628 ms Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=97 ttl=64 time=394 ms <<<<<< Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=98 ttl=64 time=196 ms <<<<<< Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=99 ttl=64 time=1.07 ms Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=100 ttl=64 time=0.843 ms Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=101 ttl=64 time=1.04 ms Thu Sep 26 12:19:45 CEST 2013 64 bytes from 2.2.2.2: icmp_req=102 ttl=64 time=3.49 ms Thu Sep 26 12:19:46 CEST 2013 64 bytes from 2.2.2.2: icmp_req=103 ttl=64 time=0.960 ms Thu Sep 26 12:19:46 CEST 2013 64 bytes from 2.2.2.2: icmp_req=104 ttl=64 time=0.992 ms Thu Sep 26 12:19:46 CEST 2013 64 bytes from 2.2.2.2: icmp_req=105 ttl=64 time=0.952 ms Thu Sep 26 12:19:46 CEST 2013 64 bytes from 2.2.2.2: icmp_req=106 ttl=64 time=0.667 ms Thu Sep 26 12:19:46 CEST 2013 64 bytes from 2.2.2.2: icmp_req=107 ttl=64 time=1.14 ms Thu Sep 26 12:19:47 CEST 2013 64 bytes from 2.2.2.2: icmp_req=108 ttl=64 time=1.52 ms Thu Sep 26 12:19:47 CEST 2013 64 bytes from 2.2.2.2: icmp_req=109 ttl=64 time=0.884 ms Thu Sep 26 12:19:47 CEST 2013 64 bytes from 2.2.2.2: icmp_req=110 ttl=64 time=1.04 ms Thu Sep 26 12:19:47 CEST 2013 64 bytes from 2.2.2.2: icmp_req=111 ttl=64 time=0.798 ms Thu Sep 26 12:19:47 CEST 2013 64 bytes from 2.2.2.2: icmp_req=112 ttl=64 time=0.587 ms Thu Sep 26 12:19:48 CEST 2013 64 bytes from 2.2.2.2: icmp_req=113 ttl=64 time=1.14 ms Thu Sep 26 12:19:48 CEST 2013 64 bytes from 2.2.2.2: icmp_req=114 ttl=64 time=0.847 ms Thu Sep 26 12:19:48 CEST 2013 64 bytes from 2.2.2.2: icmp_req=115 ttl=64 time=0.952 ms Thu Sep 26 12:19:48 CEST 2013 64 bytes from 2.2.2.2: icmp_req=116 ttl=64 time=0.924 ms Thu Sep 26 12:19:48 CEST 2013 64 bytes from 2.2.2.2: icmp_req=117 ttl=64 time=0.971 ms Thu Sep 26 12:19:49 CEST 2013 64 bytes from 2.2.2.2: icmp_req=118 ttl=64 time=1.07 ms Thu Sep 26 12:19:49 CEST 2013 64 bytes from 2.2.2.2: icmp_req=119 ttl=64 time=0.981 ms Thu Sep 26 12:19:49 CEST 2013 64 bytes from 2.2.2.2: icmp_req=120 ttl=64 time=0.706 ms Thu Sep 26 12:19:49 CEST 2013 64 bytes from 2.2.2.2: icmp_req=121 ttl=64 time=0.746 ms Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=122 ttl=64 time=365 ms <<<<<< Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=123 ttl=64 time=160 ms <<<<<< Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=124 ttl=64 time=0.784 ms Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=125 ttl=64 time=1.00 ms Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=126 ttl=64 time=1.16 ms Thu Sep 26 12:19:50 CEST 2013 64 bytes from 2.2.2.2: icmp_req=127 ttl=64 time=0.709 ms Thu Sep 26 12:19:51 CEST 2013 64 bytes from 2.2.2.2: icmp_req=128 ttl=64 time=0.850 ms Thu Sep 26 12:19:51 CEST 2013 64 bytes from 2.2.2.2: icmp_req=129 ttl=64 time=1.04 ms Thu Sep 26 12:19:51 CEST 2013 64 bytes from 2.2.2.2: icmp_req=130 ttl=64 time=1.09 ms Thu Sep 26 12:19:51 CEST 2013 64 bytes from 2.2.2.2: icmp_req=131 ttl=64 time=0.737 ms Thu Sep 26 12:19:51 CEST 2013 64 bytes from 2.2.2.2: icmp_req=132 ttl=64 time=0.775 ms Thu Sep 26 12:19:52 CEST 2013 64 bytes from 2.2.2.2: icmp_req=133 ttl=64 time=0.835 ms Thu Sep 26 12:19:52 CEST 2013 64 bytes from 2.2.2.2: icmp_req=134 ttl=64 time=0.610 ms Thu Sep 26 12:19:52 CEST 2013 64 bytes from 2.2.2.2: icmp_req=135 ttl=64 time=0.761 ms Thu Sep 26 12:19:52 CEST 2013 64 bytes from 2.2.2.2: icmp_req=136 ttl=64 time=0.726 ms Thu Sep 26 12:19:52 CEST 2013 64 bytes from 2.2.2.2: icmp_req=137 ttl=64 time=0.590 ms Thu Sep 26 12:19:53 CEST 2013 64 bytes from 2.2.2.2: icmp_req=138 ttl=64 time=1.07 ms Thu Sep 26 12:19:53 CEST 2013 64 bytes from 2.2.2.2: icmp_req=139 ttl=64 time=0.818 ms Thu Sep 26 12:19:53 CEST 2013 64 bytes from 2.2.2.2: icmp_req=140 ttl=64 time=0.832 ms Thu Sep 26 12:19:53 CEST 2013 64 bytes from 2.2.2.2: icmp_req=141 ttl=64 time=0.803 ms Thu Sep 26 12:19:53 CEST 2013 64 bytes from 2.2.2.2: icmp_req=142 ttl=64 time=2.72 ms Thu Sep 26 12:19:54 CEST 2013 64 bytes from 2.2.2.2: icmp_req=143 ttl=64 time=0.858 ms Thu Sep 26 12:19:54 CEST 2013 64 bytes from 2.2.2.2: icmp_req=144 ttl=64 time=1.41 ms Thu Sep 26 12:19:54 CEST 2013 64 bytes from 2.2.2.2: icmp_req=145 ttl=64 time=44.1 ms Thu Sep 26 12:19:54 CEST 2013 64 bytes from 2.2.2.2: icmp_req=146 ttl=64 time=0.781 ms Thu Sep 26 12:19:55 CEST 2013 64 bytes from 2.2.2.2: icmp_req=148 ttl=64 time=13.1 ms Thu Sep 26 12:19:55 CEST 2013 64 bytes from 2.2.2.2: icmp_req=147 ttl=64 time=360 ms <<<<<< Thu Sep 26 12:19:55 CEST 2013 64 bytes from 2.2.2.2: icmp_req=149 ttl=64 time=1.29 ms Thu Sep 26 12:19:55 CEST 2013 64 bytes from 2.2.2.2: icmp_req=150 ttl=64 time=0.931 ms
Thu Sep 26 12:19:55 CEST 2013
Thu Sep 26 12:19:55 CEST 2013 --- 2.2.2.2 ping statistics ---
Thu Sep 26 12:19:55 CEST 2013 150 packets transmitted, 150 received, 0% packet loss, time 29869ms Thu Sep 26 12:19:55 CEST 2013 rtt min/avg/max/mdev = 0.505/21.469/449.573/79.782 ms, pipe 3

_______________________________________________
discuss mailing list
discuss@openvswitch.org
http://openvswitch.org/mailman/listinfo/discuss

Reply via email to